Skip to content

Commit

Permalink
changed condition for pre-releases builds
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Jul 8, 2021
1 parent a3db4dd commit 0c42300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:

publish-docs:
runs-on: ubuntu-20.04
if: startsWith(github.ref, 'refs/tags/v') && startsWith(github.ref, 'refs/tags/v0.0.0') != true
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-') != true
needs: build-and-release
steps:
- name: Checkout
Expand Down

0 comments on commit 0c42300

Please sign in to comment.