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 80385f3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-app-version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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: The chart ${{ github.event.inputs.chart }} will be updated to appVersion ${{ github.event.inputs.appVersion }}
run: echo The chart ${{ github.event.inputs.chart }} will be updated to appVersion ${{ github.event.inputs.appVersion }}
- name: test
run: echo ${{ @wearefrank/gemeente-team.contains(github.actor) }}
- name: update appVersion
run: echo WIP
- name: update version
run: echo WIP

0 comments on commit 80385f3

Please sign in to comment.