summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-08-24 02:22:33 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-08-24 02:22:33 -0400
commita7f8aab6aa407f2d7174e6eb478040d87210d36e (patch)
tree77c540f884b35567d1f3d1755ca4038e62a4ca9a /.github
parentf6f0aecc753f9c35ab2e5ccef2d9b3f70ac8b73c (diff)
ci: Fix again...
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 9f11eca4..1ee4d4dd 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -30,17 +30,17 @@ jobs:
with:
repo_token: ${{ secrets.BOTTOM_PACKAGE_DEPLOYMENT }}
file: bottom.rb
- tag: ${{ github.ref }}
+ tag: ${{ env.RELEASE_VERSION }}
overwrite: true
- name: Trigger homebrew
run: |
curl -X POST https://api.github.com/repos/ClementTsang/homebrew-bottom/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-u ${{ secrets.BOTTOM_PACKAGE_DEPLOYMENT }} \
- --data '{ "event_type": "update", "client_payload": { "version": "$RELEASE_VERSION" } }'
+ --data '{ "event_type": "update", "client_payload": { "version": "'"$RELEASE_VERSION"'" } }'
- name: Trigger choco
run: |
curl -X POST https://api.github.com/repos/ClementTsang/choco-bottom/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-u ${{ secrets.BOTTOM_PACKAGE_DEPLOYMENT }} \
- --data '{ "event_type": "update", "client_payload": { "version": "$RELEASE_VERSION" } }'
+ --data '{ "event_type": "update", "client_payload": { "version": "'"$RELEASE_VERSION"'" } }'