Skip to content

Commit

Permalink
chore: add workflow for updating appversion
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsens committed Sep 13, 2023
1 parent a1a9473 commit e23a8fe
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/update-app-version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: update-app-version
on:
workflow_dispatch:
inputs:
distinct_id:
chart:
required: true
description: Path to chart to update
appVersion:
required: true
description: The desired version


jobs:
update:
runs-on: ubuntu-latest
steps:
- name: echo info
run: echo The chart ${{ github.event.inputs.chart }} will be updated to appVersion ${{ github.event.inputs.appVersion }}
- name: update appVersion
run: echo WIP
- name: update version
run: echo WIP

0 comments on commit e23a8fe

Please sign in to comment.