Fix upload path

This commit is contained in:
2024-10-03 03:55:20 -05:00
parent 17a7520c05
commit 64c69bb2c4

View File

@@ -105,14 +105,14 @@ jobs:
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
path: spotify-player-quickauth-v${{ env.RELEASE_VERSION }}-${{ matrix.target }}.* path: target/${{ matrix.target }}/release/spotify-player-quickauth-v${{ env.RELEASE_VERSION }}-${{ matrix.target }}.*
- name: Release - name: Release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
with: with:
files: | files: |
spotify-player-quickauth-v${{ env.RELEASE_VERSION }}-${{ matrix.target }}.* target/${{ matrix.target }}/release/spotify-player-quickauth-v${{ env.RELEASE_VERSION }}-${{ matrix.target }}.*
generate_release_notes: true generate_release_notes: true
# Publish flow # Publish flow