Skip to content

Commit

Permalink
revert-upload
Browse files Browse the repository at this point in the history
actions/upload-artifact@v4 buggy on apple runners:

actions/upload-artifact#527
  • Loading branch information
jhheider committed Aug 5, 2024
1 parent e0f7006 commit 1ee1f69
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ jobs:
file: ${{ steps.dl.outputs.filename }}
compression: ${{matrix.compression}}

- uses: actions/upload-artifact@v4
# v4 is buggy on apple
# https://github.com/actions/upload-artifact/issues/527
- uses: actions/upload-artifact@v3
with:
path: ${{ steps.bottle.outputs.filename }}
name: ${{ steps.bottle.outputs.name }}
Expand Down
4 changes: 3 additions & 1 deletion download-build-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ runs:
id: prep
shell: bash

- uses: actions/download-artifact@v4
# upload-artifact@v4 is buggy on apple, and versions must match
# https://github.com/actions/upload-artifact/issues/527
- uses: actions/download-artifact@v3
id: download
with:
name: ${{ steps.prep.outputs.artifact-name }}
Expand Down
4 changes: 3 additions & 1 deletion upload-build-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ runs:
id: tar
shell: bash

- uses: actions/upload-artifact@v4
# v4 is buggy on apple
# https://github.com/actions/upload-artifact/issues/527
- uses: actions/upload-artifact@v3
with:
path: ${{ steps.tar.outputs.path }}
name: ${{ steps.tar.outputs.name }}
Expand Down

0 comments on commit 1ee1f69

Please sign in to comment.