From d0d7b74cf930d2d6a850a52372ebcd8d0e883a8e Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sun, 18 Sep 2022 00:40:16 -0700 Subject: [PATCH] ci: use non-extension way of differentiating win32 --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cfdb273b..c6f6de847 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -263,18 +263,20 @@ jobs: # Create Portable ZIP echo -n > olive-editor/portable + mkdir deploy + mv olive-editor deploy - name: Upload Installer Artifact to GitHub uses: actions/upload-artifact@v2 with: - name: ${{ env.PKGNAME }}.exe + name: ${{ env.PKGNAME }}-Installer path: ${{ runner.workspace }}/build/${{ env.PKGNAME }}.exe - name: Upload Portable Artifact to GitHub uses: actions/upload-artifact@v2 with: - name: ${{ env.PKGNAME }} - path: ${{ runner.workspace }}/build/olive-editor + name: ${{ env.PKGNAME }}-Portable + path: ${{ runner.workspace }}/build/deploy macos: strategy: