Skip to content

Commit

Permalink
[#113] Use bash shell again
Browse files Browse the repository at this point in the history
  • Loading branch information
DPS0340 committed Jul 5, 2024
1 parent c5f8421 commit 85a95bb
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:
- run: cargo build --verbose

- name: Upload binary to release
uses: softprops/action-gh-release@v1
with:
files: target/debug/rrdb${{ runner.os == 'Windows' && '.exe' || ''}}
run: >
mv $path $name
gh release upload ${{ github.ref_name }} $name
shell:
bash
env:
GH_TOKEN: ${{ github.token }}
name: ${{ env.os }}-rrdb${{ runner.os == 'Windows' && '.exe' || ''}}
path: target/debug/rrdb${{ runner.os == 'Windows' && '.exe' || ''}}

0 comments on commit 85a95bb

Please sign in to comment.