summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml11
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: