summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-06-30 19:46:02 -0700
committerGitHub <noreply@github.com>2021-06-30 22:46:02 -0400
commit47629326e657f940c2e0a03c6c3f4b4c8b1e7513 (patch)
treee16d9e00f8cbf514b1ac2c39bf88af9022a9c7c6 /.github
parent9e81e36ed5736b64d3194d35d5a810342e47865c (diff)
ci: Add post-release action for AUR repo (#531)
Adds an additional post-release action to trigger AUR PKGBUILD actions for https://github.com/ClementTsang/aur-bottom.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/post-release.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml
index 3189b75c..9e52d852 100644
--- a/.github/workflows/post-release.yml
+++ b/.github/workflows/post-release.yml
@@ -98,3 +98,10 @@ jobs:
-H 'Accept: application/vnd.github.everest-preview+json' \
-u ${{ secrets.BOTTOM_PACKAGE_DEPLOYMENT }} \
--data '{ "event_type": "update", "client_payload": { "version": "'"$RELEASE_VERSION"'" } }'
+
+ - name: Trigger AUR
+ run: |
+ curl -X POST https://api.github.com/repos/ClementTsang/aur-bottom/dispatches \
+ -H 'Accept: application/vnd.github.everest-preview+json' \
+ -u ${{ secrets.BOTTOM_PACKAGE_DEPLOYMENT }} \
+ --data '{ "event_type": "update", "client_payload": { "version": "'"$RELEASE_VERSION"'" } }' \ No newline at end of file