Skip to content

Commit

Permalink
Fix bad letter in tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
dual-wield-ray committed Nov 19, 2022
1 parent 2bb8c2e commit e40f467
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:


publish-documentation:
if: github.ref_name == 'main' || github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')
if: github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/')

needs: build-documentation
runs-on: ubuntu-latest
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
build-package:
if: github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/')

runs-on: ubuntu-latest

Expand All @@ -121,7 +121,7 @@ jobs:


publish-package:
if: github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/')

needs: build-package

Expand Down

0 comments on commit e40f467

Please sign in to comment.