Skip to content

Commit

Permalink
ci: update upload-artifact action to v4 (#428)
Browse files Browse the repository at this point in the history
Update CI upload-artifact action.
  • Loading branch information
vladfi1 authored Nov 5, 2024
1 parent 5980277 commit d60dd84
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
MsiExec.exe /passive /X{1D8E6291-B0D5-35EC-8441-6616F567A0F7}
mkdir .\Tools\DX
- name: "Setup MSBuild"
uses: microsoft/setup-msbuild@v1
uses: microsoft/setup-msbuild@v1
- name: Cache Utils
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -154,11 +154,11 @@ jobs:
move $FILE_NAME ..\..\artifact\
- name: "Publish"
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: "./artifact/"

linux:
needs: [skip_duplicates]
if: ${{ needs.skip_duplicates.outputs.should_skip != 'true' }}
Expand Down Expand Up @@ -266,11 +266,11 @@ jobs:
mv "${FILE_NAME}" ./artifact/
- name: "Publish"
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: "./artifact/"

macOS:
needs: [skip_duplicates]
if: ${{ needs.skip_duplicates.outputs.should_skip != 'true' }}
Expand Down Expand Up @@ -365,7 +365,7 @@ jobs:
working-directory: ${{ github.workspace }}
run: |
rm build/Binaries/traversal_server
chmod +x Tools/create-dmg/run.sh
chmod +x Tools/create-dmg/run.sh
./Tools/create-dmg/run.sh --no-internet-enable \
--volname "Slippi Dolphin Installer" \
--volicon "Data/slippi_dmg_icon.icns" \
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
chmod +x Tools/notarize_netplay.sh && ./Tools/notarize_netplay.sh ./artifact/${{ env.FILE_NAME }}.dmg
- name: "Publish"
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: "./artifact/"
Expand Down

0 comments on commit d60dd84

Please sign in to comment.