Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Upload files separately (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
matextrem authored May 7, 2020
1 parent abb600d commit 8bc5de3
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,24 @@ jobs:
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}

- name: 'Upload Artifacts'
if: contains(github.ref, 'development')
- name: 'Upload Artifacts OSX'
if: contains(github.ref, 'development') && startsWith(matrix.os, 'macos')
uses: actions/upload-artifact@v2
with:
name: desktop-artifacts
path: ./dist/Safe[ ]Multisig*.*
name: Desktop OSX
path: ./dist/Safe[ ]Multisig*.dmg

- name: 'Upload Artifacts Linux'
if: contains(github.ref, 'development') && startsWith(matrix.os, 'ubuntu')
uses: actions/upload-artifact@v2
with:
name: Desktop Linux
path: ./dist/Safe[ ]Multisig*.AppImage

- name: 'Upload Artifacts Windows'
if: contains(github.ref, 'development') && startsWith(matrix.os, 'windows')
uses: actions/upload-artifact@v2
with:
name: Desktop Windows
path: ./dist/Safe[ ]Multisig*.exe

0 comments on commit 8bc5de3

Please sign in to comment.