Skip to content

Commit

Permalink
Merge pull request #1528 from RoboSats/v0.7.1-alpha
Browse files Browse the repository at this point in the history
Fix desktop release
  • Loading branch information
KoalaSat authored Oct 18, 2024
2 parents 6412754 + 788b7de commit c11c264
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,43 @@ jobs:
id: commit
uses: pr-mpt/actions-commit-hash@v3

- name: Print semver
run: echo The semver is ${{ github.event.inputs.semver }}

- name: Upload macOS Build Artifact
id: upload-release-mac-zip-asset
uses: actions/upload-artifact@v4
if: inputs.semver != ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: desktopApp/release-builds/Robosats-darwin-x64
name: robosats-desktop-${{ inputs.semver }}-mac-darwin-x64

- name: Upload Windows Build Artifact
id: upload-release-win-zip-asset
uses: actions/upload-artifact@v4
if: inputs.semver != ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: desktopApp/release-builds/Robosats-win32-ia32
name: robosats-desktop-${{ inputs.semver }}-win32-ia32

- name: Upload Linux Build Artifact
id: upload-release-linux-zip-asset
uses: actions/upload-artifact@v4
if: inputs.semver != ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: desktopApp/release-builds/Robosats-linux-x64
name: robosats-desktop-${{ inputs.semver }}-linux-x64

- name: Upload macOS Build Artifact
id: upload-release-mac-zip-asset
uses: actions/upload-artifact@v4
if: inputs.semver == ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -79,6 +113,7 @@ jobs:
- name: Upload Windows Build Artifact
id: upload-release-win-zip-asset
uses: actions/upload-artifact@v4
if: inputs.semver == ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -88,6 +123,7 @@ jobs:
- name: Upload Linux Build Artifact
id: upload-release-linux-zip-asset
uses: actions/upload-artifact@v4
if: inputs.semver == ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit c11c264

Please sign in to comment.