Skip to content

Commit

Permalink
fix(ci): using download-artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperFola committed Sep 19, 2024
1 parent 39cfc80 commit b98880b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
artifact-name: 'arkscript.exe'

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: artifact
Expand All @@ -101,31 +101,31 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Download artifact Linux GCC 14
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ubuntu-gcc-14
path: ark-ubuntu-gcc-14

- name: Download artifact Linux Clang 16
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ubuntu-clang-16
path: ark-ubuntu-clang-16

- name: Download artifact Windows MSVC 19
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: windows-msvc-22
path: ark-windows-msvc-22

- name: Download artifact MacOS Clang
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: macos-clang-16
path: ark-macos-clang-16

- name: Download artifact Windows InnoSetup installer
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: arkscript.exe
path: ark-windows-installer
Expand Down

0 comments on commit b98880b

Please sign in to comment.