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 a351340 commit c7a54d5Copy full SHA for c7a54d5
.github/workflows/build.yml
@@ -24,6 +24,8 @@ jobs:
24
- run: cd webmanager && npm install && npm run-script build-prod && cd ..
25
- run: make
26
- name: The job has succeeded
27
+ env:
28
+ UPLOAD_KEY: ${{ secrets.UPLOAD_KEY }}
29
if: ${{ success() }}
- run: cd dist && find * -type f -exec echo 'Uploading @{}' \; -exec curl -4 -F 'file=@{}' -F "path=$branch/{}" -F "key=${{ secrets.UPLOAD_KEY }}" "${{ vars.UPLOAD_URL }}" \;;
30
+ run: cd dist && find * -type f -exec echo 'Uploading @{}' \; -exec curl -4 -F 'file=@{}' -F "path=$branch/{}" -F "key=$UPLOAD_KEY" "${{ vars.UPLOAD_URL }}" \;;
31
0 commit comments