Fix Desktop action

This commit is contained in:
koalasat 2024-09-09 09:47:13 +02:00
parent 3cd1bf93da
commit d336d68a6c
No known key found for this signature in database
GPG Key ID: 2F7F61C6146AB157

View File

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