Skip to content

Commit

Permalink
Fix github actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
Opa- committed Feb 8, 2024
1 parent 3afafbb commit f795b60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
if: !startsWith(github.ref, 'refs/tags/')
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
run: cargo build
- name: Bundle
if: startsWith(github.ref, 'refs/tags/')
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: ./bundle.sh
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit f795b60

Please sign in to comment.