diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 2a3446c..dc1e9c7 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -33,8 +33,7 @@ jobs: KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} - name: Upload installer artifact - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v6 with: name: APK - path: build/app/outputs/flutter-apk/app-release.apk - archive: false \ No newline at end of file + path: build/app/outputs/flutter-apk/app-release.apk \ No newline at end of file diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index ba5779a..1800c1a 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -34,7 +34,7 @@ jobs: run: mv result/nexus.federated.Nexus.flatpak nexus.federated.Nexus-${{ matrix.arch }}.flatpak - name: Upload installer artifact - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v6 with: - path: nexus.federated.Nexus-${{ matrix.arch }}.flatpak - archive: false \ No newline at end of file + name: flatpak-${{ matrix.arch }} + path: nexus.federated.Nexus-${{ matrix.arch }}.flatpak \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 58ca8d1..c07f0ad 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -51,8 +51,7 @@ jobs: run: iscc windows/installer.iss - name: Upload installer artifact - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v6 with: name: windows-installer - path: windows/dist/Nexus-Setup.exe - archive: false \ No newline at end of file + path: windows/dist/Nexus-Setup.exe \ No newline at end of file