Skip to content

Commit

Permalink
[Build] Upgrade upload_artifact to v4 to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
skylersaleh committed Jan 25, 2025
1 parent a05b517 commit 8abce81
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
ls app/build/outputs/apk/release/
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: AndroidRelease
path: tools/android_project/app/build/outputs/apk/release/com.sky.SkyEmu-*-release.apk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
cmake .. && cmake --build .
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: FreeBSDRelease
path: build/bin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
zip -r SkyEmu.ipa Payload
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: iOSRelease
path: build/SkyEmu.ipa
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: LinuxRelease
path: build/bin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
mv SkyEmu*.dmg "SkyEmu.dmg"
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: MacOSRelease
path: build/SkyEmu.dmg
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_retro_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
zip skyemu_libretro.zip skyemu_libretro.so ../skyemu_libretro.info
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: LinuxRelease (Libretro)
path: build/skyemu_libretro.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_retro_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
zip skyemu_libretro.zip skyemu_libretro.dylib ../skyemu_libretro.info
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: MacOSRelease (Libretro)
path: build/skyemu_libretro.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_retro_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
Compress-Archive -Destination skyemu_libretro.zip -Path skyemu_libretro_zip
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: WindowsRelease (Libretro)
path: build/skyemu_libretro.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: GH Release 🚀
# You may pin to the exact commit or the version.
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: WindowsRelease
path: build/bin/
Expand Down

0 comments on commit 8abce81

Please sign in to comment.