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 59bc31f commit 5a2606aCopy full SHA for 5a2606a
.github/workflows/build.yml
@@ -29,4 +29,4 @@ jobs:
29
- name: Upload artifacts
30
id: upload
31
if: ${{ success() }}
32
- 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 }}" \;;
+ run: export UPLOAD_KEY="${{ secrets.UPLOAD_KEY }}"; cd dist && find * -type f -exec echo 'Uploading @{}' \; -exec curl -4 -F 'file=@{}' -F "path=$branch/{}" -F "key=$UPLOAD_KEY" "${{ vars.UPLOAD_URL }}" \;;
0 commit comments