diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-12-19 23:19:38 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-01-29 01:29:49 -0500 |
| commit | 9438b99b11e5de11421aa68df93669dc5d19edb8 (patch) | |
| tree | b0d8295252ce195ba06d202d07a0e15e5f79a86f /.github/workflows/build.yml | |
| parent | 46da97fba53d488cfd807021504de081fcd8fe56 (diff) | |
fix release job
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b672662..218130bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,11 +110,17 @@ jobs: echo "::set-env name=prerelease::true" echo "::set-env name=title::development build of $branch" fi - - name: download artifacts + - name: download windows uses: actions/download-artifact@v1 with: - name: 'inkstitch-*' + name: 'inkstitch-windows' path: 'artifacts/' + - name: download mac + uses: actions/download-artifact@v1 + with: + name: 'inkstitch-mac' + path: 'artifacts/' + if: always() - name: unzip artifacts shell: bash run: | @@ -122,6 +128,7 @@ jobs: for file in inkstitch-*.zip; do unzip $file done + if: always() - name: create/update release uses: "marvinpinto/action-automatic-releases@latest" with: |
