Skip to content

Commit

Permalink
Fix conditional in release workflow (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
MisanthropicBit authored Nov 14, 2024
1 parent ff6bec2 commit ab22e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
release:
name: create gh release
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
if: github.ref == 'refs/heads/master'
steps:
- name: Create github release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit ab22e46

Please sign in to comment.