Skip to content

Commit

Permalink
Update builds to use upload-artifact v4
Browse files Browse the repository at this point in the history
v3 (and node 16 actions) are deprecated
  • Loading branch information
jtothebell committed Apr 17, 2024
1 parent feff8d0 commit d98376f
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Build
run: cd platform/libretro && make

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Xbox-Series-libretro
path: |
Expand All @@ -62,7 +62,7 @@ jobs:
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir devkitpro/devkitarm /bin/bash -ex /build_dir/.github/workflows/build3ds.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Nintendo 3DS
path: |
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir devkitpro/devkita64 /bin/bash -ex /build_dir/.github/workflows/buildSwitch.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Nintendo Switch
path: |
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir jondbell/devkitppc-wiiu-sdl2 /bin/bash -ex /build_dir/.github/workflows/buildWiiU.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Nintendo Wii U
path: |
Expand All @@ -120,7 +120,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir gnuton/vitasdk-docker:20220413 /bin/sh -ex /build_dir/.github/workflows/buildVita.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: PS Vita
path: |
Expand All @@ -139,7 +139,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir mcejp/arm-miyoo-linux-musleabi-gcc /bin/sh -ex /build_dir/.github/workflows/buildBittboy.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Bittboy
path: |
Expand All @@ -159,7 +159,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir jondbell/union-miyoomini-toolchain /bin/sh -ex /build_dir/.github/workflows/buildMiyooMini.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: MiyooMini
path: |
Expand All @@ -178,7 +178,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir jondbell/gcw0 /bin/sh -ex /build_dir/.github/workflows/buildGcw0.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Gcw0
path: |
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
cp platform/libretro/libs/arm64-v8a/libfake08.so platform/libretro/libs/libfake08-arm64.so &&
cp platform/libretro/libs/armeabi-v7a/libfake08.so platform/libretro/libs/libfake08-arm32.so
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Android-Libretro
path: |
Expand All @@ -229,7 +229,7 @@ jobs:
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir jondbell/union-miyoomini-toolchain /bin/sh -ex /build_dir/.github/workflows/buildMiyooMini-libretro.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: MiyooMini-libretro
path: |
Expand All @@ -251,7 +251,7 @@ jobs:
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir jondbell/gcw0 /bin/sh -ex /build_dir/.github/workflows/buildGcw0-libretro.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: GCW0-libretro
path: |
Expand All @@ -277,7 +277,7 @@ jobs:
- name: Build
run: |
docker run -e ENABLE_COMPATIBILITY_REPORTING -v $GITHUB_WORKSPACE:/build_dir devkitpro/devkita64 /bin/bash -ex /build_dir/.github/workflows/buildSwitch-libretro.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: switch-libretro
path: |
Expand Down

0 comments on commit d98376f

Please sign in to comment.