We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7182b51 commit 5934822Copy full SHA for 5934822
1 file changed
.github/workflows/release.yml
@@ -42,12 +42,16 @@ jobs:
42
permissions:
43
contents: read
44
needs: goreleaser
45
- if: ${{ !contains(github.ref_name, '-') }}
+ if: >-
46
+ !github.event.deleted
47
+ && !contains(github.ref_name, '-')
48
+ && github.repository == 'GoCodeAlone/workflow-plugin-github'
49
steps:
50
- name: Trigger registry manifest sync
- uses: peter-evans/repository-dispatch@v4
51
+ uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4
52
with:
53
token: ${{ secrets.repo_dispatch_token }}
54
repository: GoCodeAlone/workflow-registry
55
event-type: plugin-release
- client-payload: '{"plugin": "github"}'
56
+ client-payload: |-
57
+ {"plugin": "github", "tag": "${{ github.ref_name }}"}
0 commit comments