From 8a4770703799954676e555c7b7bb341205d4450f Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Thu, 16 Apr 2026 10:39:06 -0400 Subject: [PATCH] bump upload artifact action version --- .github/workflows/android.yml | 5 +++-- .github/workflows/flatpak.yml | 5 +++-- .github/workflows/windows.yml | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index dc1e9c7..2a3446c 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -33,7 +33,8 @@ jobs: KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} - name: Upload installer artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: APK - path: build/app/outputs/flutter-apk/app-release.apk \ No newline at end of file + path: build/app/outputs/flutter-apk/app-release.apk + archive: false \ No newline at end of file diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 5e693f0..fdfb02b 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -31,7 +31,8 @@ jobs: run: nix build .#flatpak - name: Upload installer artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: flatpak-${{ matrix.arch }} - path: result/nexus.federated.Nexus.flatpak \ No newline at end of file + path: result/nexus.federated.Nexus.flatpak + archive: false \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c07f0ad..58ca8d1 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -51,7 +51,8 @@ jobs: run: iscc windows/installer.iss - name: Upload installer artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: windows-installer - path: windows/dist/Nexus-Setup.exe \ No newline at end of file + path: windows/dist/Nexus-Setup.exe + archive: false \ No newline at end of file