From 44b1af28ee384c03348d6033e11822b93d7e6055 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Tue, 15 Sep 2020 13:32:50 +1000 Subject: [PATCH] ci: fixed portable packaging (i think) --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7d419bb5..06e8350b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,6 @@ jobs: steps: - uses: actions/checkout@v2 - - - name: Create empty file - shell: cmd - run: type NUL > empty.txt - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory @@ -90,9 +86,9 @@ jobs: run: mkdir olive-editor && copy app\olive-editor.exe olive-editor && windeployqt olive-editor\olive-editor.exe && copy %GITHUB_WORKSPACE%\bin\*.dll olive-editor - name: Deploy Portable - working-directory: ${{runner.workspace}}/build/olive-editor + working-directory: ${{runner.workspace}}/build shell: cmd - run: copy nul olive-editor\portable && 7z a Olive-Windows-x86_64.zip olive-editor + run: type NUL > olive-editor\portable && 7z a Olive-Windows-x86_64.zip olive-editor - name: Upload artifact uses: actions/upload-artifact@v2