We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e96946 commit cdc2752Copy full SHA for cdc2752
.github/workflows/website-deploy.yml
@@ -2,7 +2,7 @@ name: Deploy Website
2
3
on:
4
push:
5
- branches: [ plugin_api_v2, add_deploy_trigger ]
+ branches: [ plugin_api_v2, add_deploy_trigger ] # <======
6
# paths:
7
# - 'plugins.json'
8
workflow_dispatch:
@@ -19,4 +19,4 @@ jobs:
19
-H "Authorization: Bearer ${{ secrets.DEPLOY_WEBSITE }}" \
20
https://api.github.com/repos/Flow-Launcher/flow-launcher.github.io/dispatches \
21
-d '{"event_type":"deploy"}')
22
- if [ "$http_status" -ne 200 ]; then echo "Error: Deploy trigger failed, HTTP status code is $http_status"; exit 1; fi
+ if [ "$http_status" -ne 204 ]; then echo "Error: Deploy trigger failed, HTTP status code is $http_status"; exit 1; fi
0 commit comments