From 6616b064f62e3b4572d9e047f82771545cfd2b77 Mon Sep 17 00:00:00 2001 From: Ayane Satomi Date: Fri, 27 Aug 2021 15:05:40 +0800 Subject: [PATCH] Remove redundant platform folder They get released on seperate workers, making the need to categorize them moot --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5cbb9289..21a4db6f 100755 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -45,8 +45,8 @@ jobs: - name: Build run: | - dotnet publish Vignette.Desktop/Vignette.Desktop.csproj -c Release -o ./release/${{ matrix.os.runtime }} -r ${{ matrix.os.runtime }} --self-contained true -p:Version=${{ needs.variables.outputs.version }} - 7z a -tzip Vignette.${{ needs.variables.outputs.version }}-${{ matrix.os.runtime }}.zip release/${{ matrix.os.runtime }}/* + dotnet publish Vignette.Desktop/Vignette.Desktop.csproj -c Release -o ./release -r ${{ matrix.os.runtime }} --self-contained true -p:Version=${{ needs.variables.outputs.version }} + 7z a -tzip Vignette.${{ needs.variables.outputs.version }}-${{ matrix.os.runtime }}.zip release/* - name: Stage Artifact for AppCenter uses: actions/upload-artifact@v2