From 417b87e50f6b47ea223cd063ee4b8998bf07bb6a Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Wed, 16 Sep 2020 14:27:22 +1000 Subject: [PATCH] ci: upload two separate artifacts --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fca90c47..77c42798a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,8 +109,14 @@ jobs: PKGNAME: ${{steps.vars.outputs.pkgname}} run: type NUL > olive-editor\portable && 7z a %PKGNAME%.zip olive-editor - - name: Upload artifact + - name: Upload Installer Artifact uses: actions/upload-artifact@v2 with: - name: Windows (x86_64) - path: ${{runner.workspace}}/build/${{steps.vars.outputs.pkgname}}.* + name: ${{steps.vars.outputs.pkgname}}.exe + path: ${{runner.workspace}}/build/${{steps.vars.outputs.pkgname}}.exe + + - name: Upload Portable Artifact + uses: actions/upload-artifact@v2 + with: + name: ${{steps.vars.outputs.pkgname}}.zip + path: ${{runner.workspace}}/build/${{steps.vars.outputs.pkgname}}.zip