Skip to content

Commit

Permalink
feat: add version update trigger for cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
schoren committed Aug 29, 2024
1 parent fc286d0 commit 6b918ff
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
repository: ${{ secrets.INFRA_REPO }}
event-type: update-tags
client-payload: '{"repo_name": "tracetest", "new_tag": "${{ github.ref_name }}"}'

- name: Update chart version
uses: peter-evans/repository-dispatch@v1
with:
Expand All @@ -118,6 +118,14 @@ jobs:
event-type: update-chart
client-payload: '{"project_name": "oss", "version": "${{ github.ref_name }}"}'

- name: Update core version
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.INFRA_REPO_PAT }}
repository: ${{ secrets.CORE_REPO }}
event-type: update-chart
client-payload: '{"version": "${{ github.ref_name }}"}'

helm_chart_version_bump:
name: "Trigger Helm chart appVersion update"
needs: "release"
Expand Down

0 comments on commit 6b918ff

Please sign in to comment.