Skip to content

Commit

Permalink
Update upload-artifact and download-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
rapperskull committed Feb 27, 2024
1 parent 7752518 commit f7b7c25
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
echo "BUILD_TAG=$BUILD_TAG" >> $GITHUB_ENV
echo -n $BUILD_TAG > tag
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tag
path: tag
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
mkdir artifacts
mv -vb build\${{ matrix.configuration }}\extract-xiso.exe, LICENSE.TXT artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: extract-xiso-${{ matrix.artifact_os }}-${{ matrix.configuration }}
path: artifacts
Expand All @@ -76,7 +76,7 @@ jobs:
run: |
mkdir artifacts
mv -v build/extract-xiso LICENSE.TXT artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: extract-xiso-linux
path: artifacts
Expand All @@ -97,7 +97,7 @@ jobs:
run: |
mkdir artifacts
mv -v build/extract-xiso LICENSE.TXT artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: extract-xiso-macos
path: artifacts
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
run: |
mkdir artifacts
mv -v build/extract-xiso LICENSE.TXT artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: extract-xiso-freebsd
path: artifacts
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
run: |
mkdir artifacts
mv -v build/extract-xiso LICENSE.TXT artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: extract-xiso-openbsd
path: artifacts
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
run: |
mkdir artifacts
mv -v build/extract-xiso LICENSE.TXT artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: extract-xiso-netbsd
path: artifacts
Expand All @@ -204,7 +204,7 @@ jobs:
needs: [build-windows, build-linux, build-macos, build-freebsd, build-openbsd, build-netbsd]
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: dist
- name: Create archives
Expand Down

0 comments on commit f7b7c25

Please sign in to comment.