ci: upload two separate artifacts

This commit is contained in:
itsmattkc
2020-09-16 14:27:22 +10:00
committed by GitHub
parent 0eca756420
commit 417b87e50f
+9 -3
View File
@@ -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