Skip to content

Commit

Permalink
CI : update upload-artifact version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrlinkwii committed Jan 8, 2025
1 parent 178a466 commit 6cce429
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,21 @@ jobs:
ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }}
- name: Upload a Build Artifact Android APK Signed
if: ${{ matrix.build-type == 'apk' && env.ANDROID_KEYSTORE_PASS != null }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Android_Signed
path: Play-release.apk
env:
ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }}
- name: Upload a Build Artifact Android APK Unsigned
if: ${{ matrix.build-type == 'apk' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Android_APK_Unsigned
path: Play-release-unsigned.apk
- name: Upload a Build Artifact Android libretro
if: ${{ matrix.build-type == 'libretro' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Android_libretro
path: build_retro/play_libretro_*_android.so
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
cd installer_ios
./build_cydia.sh
- name: Upload a Build Artifact ipa/deb/bz2
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_iOS
path: |
installer_ios/Play.ipa
installer_ios/Play.deb
installer_ios/Packages.bz2
- name: Upload a Build Artifact libretro
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_iOS_libretro
path: build/Source/ui_libretro/Release-iphoneos/play_libretro_ios.dylib
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ jobs:
env:
VERSION: ${{ steps.short_hash.outputs.VALUE }}
- name: Upload a Build Artifact x86_64 AppImage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Linux_x86_64_AppImage
path: build/Play!-${{ env.SHORT_HASH }}-x86_64.AppImage
env:
SHORT_HASH: ${{ steps.short_hash.outputs.VALUE }}
- name: Upload a Build Artifact x86_64 Libretro
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Linux_x86_64_libretro
path: build/Source/ui_libretro/play_libretro.so
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ jobs:
cd build
appdmg ../installer_macos/spec.json Play.dmg
- name: Upload a Build Artifact dmg
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_MacOS_dmg
path: build/Play.dmg
- name: Upload a Build Artifact libretro
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_MacOS_libretro
path: build/Source/ui_libretro/Release/play_libretro.dylib
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ jobs:
cd ..
makensis.exe ./installer_win32/${{ matrix.installer-script}}
- name: Upload a Build Artifact Installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Windows_${{ matrix.target-platform }}_Installer
path: installer_win32\*.exe
- name: Upload a Build Artifact Libretro Core
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Play_Windows_${{ matrix.target-platform }}_libretro
path: build\Source\ui_libretro\Release\play_libretro.dll
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows_psf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ jobs:
run: makensis.exe ./tools/PsfPlayer/installer_win32/${{ matrix.installer-script }}
- name: Upload PsfPlayer Build Artifact Installer
if: ${{ matrix.aot-build == 'off' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PsfPlayer_Windows_${{ matrix.target-platform }}_Installer
path: tools/PsfPlayer/installer_win32/*.exe
- name: Upload PsfAot Build Artifact Installer
if: ${{ matrix.aot-build == 'on' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PsfAot_Windows_${{ matrix.target-platform }}
path: build\tools\PsfPlayer\Source\ui_aot\Release\PsfAot.exe
Expand Down

0 comments on commit 6cce429

Please sign in to comment.