From 664dbfb90edd52198995b0d9dd2d2f4d740ee83a Mon Sep 17 00:00:00 2001 From: daniel Date: Fri, 29 Nov 2024 23:04:26 +0300 Subject: [PATCH] Possibly fix release creating --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 21c9335..7fa1ae8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,16 +31,16 @@ jobs: shell: pwsh run: | if ($env:RUNNER_OS -eq "Windows") { - 7z a foxogram-desktop-${{ matrix.os }}.zip cmake-build + 7z a ${{ matrix.os }}.zip foxogram } else { - zip -r foxogram-desktop-${{ matrix.os }}.zip cmake-build + zip -r ${{ matrix.os }}.zip foxogram } - name: Upload artifact uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }}.zip - path: foxogram-desktop-${{ matrix.os }}.zip + path: ${{ matrix.os }}.zip upload: needs: build @@ -51,6 +51,9 @@ jobs: - name: Download artifact uses: actions/download-artifact@v4 + - name: List files + run: ls -la + - name: Create release uses: softprops/action-gh-release@v2 with: