We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d00ecd commit d4bce2fCopy full SHA for d4bce2f
.github/workflows/release.yml
@@ -0,0 +1,22 @@
1
+name: Release
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ dispatch-update:
9
+ name: Dispatch Update
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: Submitty/[email protected]
13
+ if: ${{ github.repository_owner == 'Submitty' }}
14
+ with:
15
+ event-type: repo-release
16
+ token: ${{ secrets.SUBMITTYBOT_DEPENDENCY_TOKEN }}
17
+ repository: ${{ github.repository_owner }}/Submitty
18
+ client-payload: '{
19
+ "repo_name": ${{ toJSON(github.event.repository.name) }},
20
+ "repo": ${{ toJSON(github.event.repository.full_name) }},
21
+ "tag": ${{ toJSON(github.event.release.tag_name) }}
22
+ }'
0 commit comments