From 12f5f1ae8338ebe8e430ae8cfed0680a68ce4f9a Mon Sep 17 00:00:00 2001 From: mungai-njoroge Date: Fri, 13 Oct 2023 09:53:30 +0300 Subject: [PATCH] update workflow --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 269663a..68bb43c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,14 +82,14 @@ jobs: if: matrix.os == 'ubuntu-20.04' uses: actions/upload-artifact@v3 with: - name: swingmusic + name: linux path: dist/swingmusic retention-days: 1 - name: Upload Windows binary if: matrix.os == 'windows-2019' uses: actions/upload-artifact@v3 with: - name: swingmusic.exe + name: win32 path: dist/swingmusic.exe retention-days: 1 @@ -105,7 +105,7 @@ jobs: - name: Upload binaries to GitHub Release uses: ncipollo/release-action@v1 with: - artifacts: "./swingmusic, ./swingmusic.exe" + artifacts: "./linux/swingmusic, ./win32/swingmusic.exe" token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ inputs.tag }} commit: ${{ github.sha }}