Skip to content

Commit

Permalink
trigger example updates on the actions-test repo
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Jul 25, 2024
1 parent 6ce32f6 commit a94a3b6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,16 @@ jobs:
"oldTag=$oldTag" >> $env:GITHUB_OUTPUT
"newTag=$newTag" >> $env:GITHUB_OUTPUT
- uses: peter-evans/repository-dispatch@v3
name: Trigger Update Examples version
name: Trigger Update Examples version (actions)
with:
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
repository: ${{ github.repository }}
event-type: update-examples
client-payload: '{"oldTag": "${{ steps.get-tags.outputs.oldTag }}", "newTag": "${{ steps.get-tags.outputs.newTag }}"}'
- uses: peter-evans/repository-dispatch@v3
name: Trigger Update Examples version (actions-test)
with:
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
repository: ${{ github.repository_owner }}/actions-test
event-type: update-examples
client-payload: '{"oldTag": "${{ steps.get-tags.outputs.oldTag }}", "newTag": "${{ steps.get-tags.outputs.newTag }}"}'

0 comments on commit a94a3b6

Please sign in to comment.