Skip to content

Commit

Permalink
Merge pull request #52 from Jon-Becker/fix/publish-workflow
Browse files Browse the repository at this point in the history
🔧 fix: fix cwd
  • Loading branch information
Jon-Becker authored Feb 2, 2023
2 parents 2d3d3d6 + 670aac3 commit 2085eeb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build Binaries
working-directory: ./heimdall
run: cargo build --release
- name: Upload Binaries
uses: svenstaro/upload-release-action@v2
with:
file: ./heimdall/target/release/${{ matrix.artifact_name }}
file: ./target/release/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 2085eeb

Please sign in to comment.