From 9438b99b11e5de11421aa68df93669dc5d19edb8 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 19 Dec 2019 23:19:38 -0500 Subject: fix release job --- .github/workflows/build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to '.github') 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: -- cgit v1.2.3