We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bc9ddc commit 7e94d63Copy full SHA for 7e94d63
1 file changed
.github/workflows/doc-pub.yml
@@ -8,7 +8,7 @@ on:
8
- 'v*'
9
10
jobs:
11
- deploy:
+ doc-deploy:
12
runs-on: ubuntu-latest
13
permissions: write-all
14
@@ -31,7 +31,9 @@ jobs:
31
32
- name: Deploy dev version using mike
33
if: github.ref == 'refs/heads/main'
34
- run: mike deploy dev --update-aliases --push
+ run: |
35
+ git fetch origin gh-pages --depth=1
36
+ mike deploy dev --update-aliases --push
37
38
- name: Deploy release version using mike
39
if: startsWith(github.ref, 'refs/tags/v')
0 commit comments