We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
docs
1 parent 4651dda commit dfb4ed5Copy full SHA for dfb4ed5
.github/workflows/docs.yml
@@ -51,7 +51,7 @@ jobs:
51
run: MDBOOK_ROOT=https://dipdup.net/docs make docs
52
53
- name: Deploy to GH Pages (docs)
54
- if: startsWith(github.ref, 'refs/tags')
+ if: startsWith(github.ref, 'refs/tags') && !contains(github.ref, '-rc')
55
uses: peaceiris/actions-gh-pages@v3
56
with:
57
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -63,7 +63,7 @@ jobs:
63
run: MDBOOK_ROOT=https://dipdup.net/docs-next make docs
64
65
- name: Deploy to GH Pages (docs-next)
66
- if: startsWith(github.ref, 'refs/heads')
+ if: startsWith(github.ref, 'refs/heads') || contains(github.ref, '-rc')
67
68
69
0 commit comments