Skip to content

Commit

Permalink
chore: add workflow to dispach update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsens committed Sep 13, 2023
1 parent 4f3dbf8 commit 4a2290b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/update-helm-chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Update Helm Chart

on:
workflow_dispatch:

jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Dispatch an action and get the run ID
uses: codex-/return-dispatch@v1
id: return_dispatch
with:
token: ${{ secrets.GH_TOKEN }}
ref: main
repo: charts
owner: wearefrank
workflow: update-app-version.yml
workflow_inputs: { "chart": "charts/zaakbrug", "version": "1337" }

- name: Use the output run ID
run: echo ${{steps.return_dispatch.outputs.run_id}}

0 comments on commit 4a2290b

Please sign in to comment.