diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 52c447875..6cae3ab63 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -31,12 +31,12 @@ jobs: run: | cd desktopApp npm install - + - name: Install zip utility run: | - apt-get update - apt-get install -y zip - + sudo apt-get update + sudo apt-get install -y zip + - name: Build for macOS run: | cd desktopApp @@ -46,12 +46,12 @@ jobs: run: | cd desktopApp npm run package-win - + - name: Build for Linux run: | cd desktopApp npm run package-linux - + - name: Create ZIP for macOS Build run: | cd desktopApp/release-builds/ @@ -77,14 +77,14 @@ jobs: with: name: robosats-desktop-${{ inputs.semver }}-mac.zip path: desktopApp/release-builds/desktopApp-mac.zip - + - name: 'Upload linux-build Release Artifact (for Release)' uses: actions/upload-artifact@v4 if: inputs.semver != '' # only if this workflow is called from a push to tag (a Release) with: name: robosats-desktop-${{ inputs.semver }}-linux.zip path: desktopApp/release-builds/desktopApp-linux.zip - + - name: 'Upload win-build Release Artifact (for Release)' uses: actions/upload-artifact@v4 if: inputs.semver != '' # only if this workflow is called from a push to tag (a Release)