Skip to content

Commit

Permalink
makes upload and download artifact versions match as they need to, as…
Browse files Browse the repository at this point in the history
… v3 and v4 are incompatible
  • Loading branch information
kaoudis committed Nov 20, 2024
1 parent f994797 commit d1d7d92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
outputs: type=docker,dest=/tmp/polytracker.tar

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: polytracker docker image
path: /tmp/polytracker.tar
Expand All @@ -49,7 +49,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: polytracker docker image
path: /tmp
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
fetch-depth: 1

- name: Download artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: polytracker docker image
path: /tmp
Expand Down

0 comments on commit d1d7d92

Please sign in to comment.