CI: update actions target versions

also upload .appimage and .exe files directly using the new "archive: false" option rather than zipping them
This commit is contained in:
theofficialgman
2026-08-31 19:18:55 -04:00
committed by patchzyy
parent 2b5b889249
commit 6f4dd2f470
2 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -18,11 +18,11 @@ jobs:
name: Translator (build + test)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-dotnet@v4
- uses: actions/setup-dotnet@v6
with:
dotnet-version: '8.0.x'
+8 -6
View File
@@ -29,11 +29,11 @@ jobs:
arch: aarch64
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-dotnet@v4
- uses: actions/setup-dotnet@v6
with:
dotnet-version: '8.0.x'
@@ -47,21 +47,22 @@ jobs:
- name: Build AppImage
run: bash Launcher/build-appimage.sh
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: WiiCompiled-Setup-linux-${{ matrix.arch }}
path: Launcher/dist/WiiCompiled-Setup-${{ matrix.arch }}.AppImage
if-no-files-found: error
archive: false
windows-installer:
name: Windows (installer exe)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-dotnet@v4
- uses: actions/setup-dotnet@v6
with:
dotnet-version: '8.0.x'
@@ -69,8 +70,9 @@ jobs:
shell: pwsh
run: ./Launcher/Build-Installer.ps1
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: WiiCompiled-Setup-windows-x64
path: Launcher/dist/WiiCompiled-Setup.exe
if-no-files-found: error
archive: false