Update macos.yml

This commit is contained in:
Eugene
2019-08-15 14:56:03 +02:00
committed by GitHub
parent a4ed9a5444
commit ff6ec006e7

View File

@@ -23,10 +23,17 @@ jobs:
- name: Package artifacts - name: Package artifacts
run: | run: |
mkdir artifact mkdir artifact-pkg
mv dist/*.pkg dist/*.zip artifact/ mv dist/*.pkg artifact-pkg/
mkdir artifact-zip
mv dist/*.zip artifact-zip/
- uses: actions/upload-artifact@master - uses: actions/upload-artifact@master
with: with:
name: macOS build name: macOS .pkg
path: artifact path: artifact-pkg
- uses: actions/upload-artifact@master
with:
name: macOS .zip
path: artifact-zip