We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 268c4da commit 282d101Copy full SHA for 282d101
1 file changed
.github/workflows/release.yml
@@ -35,3 +35,17 @@ jobs:
35
env:
36
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
run: gh release edit "${{ github.ref_name }}" --draft=false --repo "${{ github.repository }}"
38
+
39
+ notify-workflow-registry:
40
+ name: Notify workflow-registry
41
+ runs-on: ubuntu-latest
42
+ needs: goreleaser
43
+ if: ${{ !contains(inputs.tag_name || github.ref_name, '-') }}
44
+ steps:
45
+ - name: Trigger registry manifest sync
46
+ uses: peter-evans/repository-dispatch@v4
47
+ with:
48
+ token: ${{ secrets.repo_dispatch_token }}
49
+ repository: GoCodeAlone/workflow-registry
50
+ event-type: plugin-release
51
+ client-payload: '{"plugin": "github"}'
0 commit comments