From ff6ec006e7b35b965fb56f5dd4b507db00c27fab Mon Sep 17 00:00:00 2001 From: Eugene Date: Thu, 15 Aug 2019 14:56:03 +0200 Subject: [PATCH] Update macos.yml --- .github/workflows/macos.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3e172736..019a1b59 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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