Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: ${{ matrix.script }} --exclusive --architecture ${{ matrix.architecture }} -t BuildStreamSDR

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.id }}-${{ matrix.architecture }}
path: artifacts/${{ matrix.id }}-${{ matrix.architecture }}
Expand Down Expand Up @@ -128,14 +128,14 @@ jobs:
run: ".\\build.ps1 --exclusive -t CreateInstaller --architecture arm64"

- name: Upload x64 installer artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: win-x64-installer
path: artifacts/win-x64-installer
if-no-files-found: error

- name: Upload ARM64 installer artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: win-arm64-installer
path: artifacts/win-arm64-installer
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
run: "./build.sh --exclusive -t NotarizeInstaller --installcert \"$MAC_INSTALLER_CERT_NAME\" --appleid \"$APPLE_ID\" --applepassword \"$APPLE_ID_PASSWORD\" --teamid \"$APPLE_DEV_TEAM\""

- name: Upload installer artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: macos-installer
path: artifacts/macos-installer
Expand Down
Loading