Skip to content

Commit

Permalink
more path oopsies
Browse files Browse the repository at this point in the history
  • Loading branch information
lf- committed Jul 25, 2020
1 parent 9270ebb commit be4041f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
- uses: actions/upload-artifact@v2
if: matrix.os == 'windows-latest'
with:
name: qr-stl-win64.exe
name: win64
path: ./target/release/qr-stl.exe
- uses: actions/upload-artifact@v2
if: matrix.os == 'ubuntu-latest'
with:
name: qr-stl-linux
name: linux64
path: ./target/x86_64-unknown-linux-musl/release/qr-stl

upload:
Expand All @@ -69,7 +69,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./qr-stl-linux
asset_path: ./linux64/qr-stl
asset_name: qr-stl-linux
asset_content_type: application/x-pie-executable
- name: Upload Windows exe
Expand All @@ -79,6 +79,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./qr-stl-win64.exe
asset_path: ./win64/qr-stl.exe
asset_name: qr-stl-win64.exe
asset_content_type: application/x-dosexec

0 comments on commit be4041f

Please sign in to comment.