remove condition

This commit is contained in:
Ben Sarmiento
2023-10-29 07:18:44 +01:00
parent 124636e1bf
commit f66952e716

View File

@@ -102,17 +102,14 @@ jobs:
- name: Upload Artifacts to other repo's release
run: |
ls -1 *.zip
for artifact in $(ls -1 *.zip); do
if [[ -f "$artifact" ]]; then
echo "Uploading $artifact..."
echo "https://uploads.github.com/repos/debridmediamanager/zurg-testing/releases/${{ steps.create_release.outputs.release_id }}/assets?name=$(basename $artifact)"
echo "Content-Type: $(file -b --mime-type $artifact)"
curl -s -X POST \
-H "Authorization: token ${{ secrets.PAT }}" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: $(file -b --mime-type $artifact)" \
--data-binary "@$artifact" \
"https://uploads.github.com/repos/debridmediamanager/zurg-testing/releases/${{ steps.create_release.outputs.release_id }}/assets?name=$(basename $artifact)"
fi
echo "Uploading $artifact..."
echo "https://uploads.github.com/repos/debridmediamanager/zurg-testing/releases/${{ steps.create_release.outputs.release_id }}/assets?name=$(basename $artifact)"
echo "Content-Type: $(file -b --mime-type $artifact)"
curl -s -X POST \
-H "Authorization: token ${{ secrets.PAT }}" \
-H "Accept: application/vnd.github.v3+json" \
-H "Content-Type: $(file -b --mime-type $artifact)" \
--data-binary "@$artifact" \
"https://uploads.github.com/repos/debridmediamanager/zurg-testing/releases/${{ steps.create_release.outputs.release_id }}/assets?name=$(basename $artifact)"
done