Attempt to swap back to using the download-artifact action, but with a sleep to see if that helps it find the artifact

This commit is contained in:
David Dworken 2023-11-07 23:11:52 -08:00
parent cdd58d0191
commit a93002f045
No known key found for this signature in database

View File

@ -126,6 +126,15 @@ jobs:
with: with:
limit-access-to-actor: true limit-access-to-actor: true
detached: true detached: true
- name: Extra Sleep
run: |
sleep 300
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-arm64
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-amd64
- name: Download and sign the latest executables - name: Download and sign the latest executables
env: env:
GH_TOKEN: ${{ github.token }} GH_TOKEN: ${{ github.token }}
@ -133,9 +142,6 @@ jobs:
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }} MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
run: | run: |
export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
sleep 300
gh run download -n hishtory-darwin-amd64
gh run download -n hishtory-darwin-arm64
brew install coreutils brew install coreutils
python3 scripts/actions-sign.py python3 scripts/actions-sign.py
- name: Upload Artifacts - name: Upload Artifacts