From 1ffc31d2e59c21d0c223f8e1f756c30b05d7d02d Mon Sep 17 00:00:00 2001 From: Sergi Philipsen Date: Wed, 13 Sep 2023 10:21:16 +0200 Subject: [PATCH] chore: add workflow for updating appversion --- .github/workflows/update-app-version.yaml | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/update-app-version.yaml diff --git a/.github/workflows/update-app-version.yaml b/.github/workflows/update-app-version.yaml new file mode 100644 index 0000000..097a2ee --- /dev/null +++ b/.github/workflows/update-app-version.yaml @@ -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: echo actor + run: echo ${{ github.actor }} + - 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: update appVersion + run: echo WIP + - name: update version + run: echo WIP \ No newline at end of file