Zip direct

This commit is contained in:
Max Goedjen 2025-09-27 00:38:18 -07:00
parent 76fe436438
commit db312757d0
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ jobs:
id: download
env:
ZIP_URL: ${{ steps.upload.outputs.artifact-url }}
run: curl $ZIP_URL > Secretive.zip
run: curl -L $ZIP_URL > Secretive.zip
- name: Notarize
env:
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}

View File

@ -68,9 +68,9 @@ jobs:
path: Artifact
- name: Download Zipped Artifact
id: download
uses: actions/download-artifact@v5
with:
artifact-ids: ${{ steps.upload.outputs.artifact-id }}
env:
ZIP_URL: ${{ steps.upload.outputs.artifact-url }}
run: curl -L $ZIP_URL > Secretive.zip
- name: Notarize
env:
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}