diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0462e0f..4eca9c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -98,20 +98,18 @@ jobs: needs: build permissions: write-all steps: + - name: Checkout into repo + uses: actions/checkout@v2 - name: Download all binaries uses: actions/download-artifact@v3 id: download - - name: Checkout into repo - uses: actions/checkout@v2 - name: Print download directory run: | - echo ${{steps.download.outputs.download-path}} + ls -R - name: Upload binaries to GitHub Release uses: ncipollo/release-action@v1 with: - artifacts: | - swingmusic - swingmusic.exe + artifacts: "swingmusic, swingmusic.exe" token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ inputs.tag }} commit: ${{ github.sha }}