Skip to content

Commit

Permalink
fix: release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Oct 13, 2023
1 parent 81a49a1 commit e46b720
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Extract executable binary, upload artifacts, create release
on:
workflow_run:
workflows:
- "Build and publish docker"
- "Release - Build and publish docker, and trigger package release"
types:
- "completed"
branches:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and publish docker, and trigger release
name: Release - Build and publish docker, and trigger package release
on:
push:
branches:
Expand Down Expand Up @@ -179,4 +179,4 @@ jobs:
uses: peter-evans/repository-dispatch@v2
with:
event-type: release-event
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "pull_request": { "title": "${{ github.event.pull_request.title }}", "body": "${{ github.event.pull_request.body }}", "number": "${{ github.event.pull_request.number }}", "head": "${{ github.event.pull_request.head.ref }}", "base": "${{ github.event.pull_request.base.ref}}"}}'
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "pull_request": { "title": "${{ github.event.pull_request.title }}", "body": "${{ toJson(github.event.pull_request.body) }}", "number": "${{ github.event.pull_request.number }}", "head": "${{ github.event.pull_request.head.ref }}", "base": "${{ github.event.pull_request.base.ref}}"}}'

0 comments on commit e46b720

Please sign in to comment.