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.
1 parent 34094f2 commit 0eda443Copy full SHA for 0eda443
.github/workflows/docs.yml
@@ -47,7 +47,7 @@ jobs:
47
run: make install
48
49
- name: Build docs (docs)
50
- if: startsWith(github.ref, 'refs/tags')
+ if: startsWith(github.ref, 'refs/tags') && !contains(github.ref, '-rc')
51
run: MDBOOK_ROOT=https://dipdup.net/docs make docs
52
53
- name: Deploy to GH Pages (docs)
@@ -59,7 +59,7 @@ jobs:
59
destination_dir: docs
60
61
- name: Build docs (docs-next)
62
- if: startsWith(github.ref, 'refs/heads')
+ if: startsWith(github.ref, 'refs/heads') || contains(github.ref, '-rc')
63
run: MDBOOK_ROOT=https://dipdup.net/docs-next make docs
64
65
- name: Deploy to GH Pages (docs-next)
0 commit comments