Skip to content

Commit

Permalink
chore[ci]: roll back GH actions/*artifacts version (#3838)
Browse files Browse the repository at this point in the history
this commit fixes a regression introduced in 730679b, which is that v4
of the artifact actions breaks the asset upload pipeline. roll back the
changes for now
  • Loading branch information
charles-cooper authored Mar 6, 2024
1 parent 2d232eb commit 895b38a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: dist/vyper.*
name: vyper-${{ matrix.os }}
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
./make.cmd freeze
- name: Upload Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: dist/vyper.*
name: vyper-windows
Expand All @@ -86,13 +86,13 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
path: artifacts/

- name: Upload assets
# fun - artifacts are downloaded into "artifact/".
# TODO: this needs to be tested since the upgrade to upload-artifact v4
# TODO: this needs to be tested when upgrading to upload-artifact v4
working-directory: artifacts/artifact
run: |
set -Eeuxo pipefail
Expand Down

0 comments on commit 895b38a

Please sign in to comment.