Update macos.yml

This commit is contained in:
Eugene 2019-08-15 14:56:03 +02:00 committed by GitHub
parent a4ed9a5444
commit ff6ec006e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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