Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
Improved packaging naming
Browse files Browse the repository at this point in the history
  • Loading branch information
obany committed Jul 24, 2020
1 parent 243b67c commit 61ca234
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/desktop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,25 @@ jobs:
run: npm run package-linux
if: matrix.os == 'ubuntu-18.04'

- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@v1.1.0

- uses: actions/upload-artifact@v2
with:
name: pollen-wallet-win
path: out/pollen-wallet*
name: pollen-wallet-win-${{ steps.package-version.outputs.current-version}}
path: out/pollen-wallet-${{ steps.package-version.outputs.current-version}}.exe
if: matrix.os == 'windows-2019'

- uses: actions/upload-artifact@v2
with:
name: pollen-wallet-mac
path: out/pollen-wallet*
name: pollen-wallet-mac-${{ steps.package-version.outputs.current-version}}
path: out/pollen-wallet-${{ steps.package-version.outputs.current-version}}.dmg
if: matrix.os == 'macos-10.15'

- uses: actions/upload-artifact@v2
with:
name: pollen-wallet-linux
path: out/pollen-wallet*
name: pollen-wallet-linux-${{ steps.package-version.outputs.current-version}}
path: |
out/pollen-wallet-${{ steps.package-version.outputs.current-version}}.AppImage
if: matrix.os == 'ubuntu-18.04'

0 comments on commit 61ca234

Please sign in to comment.