We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ae0ff commit 00d6c20Copy full SHA for 00d6c20
.github/workflows/docs.yml
@@ -4,8 +4,8 @@ name: Build docs
4
5
on:
6
push:
7
- branches:
8
- - main
+ tags:
+ - "v*"
9
workflow_dispatch:
10
11
concurrency:
@@ -26,6 +26,8 @@ jobs:
26
- run: |
27
make docs
28
- uses: peaceiris/actions-gh-pages@v4
29
+ if: github.ref == 'refs/heads/main'
30
with:
31
+ keep_files: true
32
github_token: ${{ secrets.GITHUB_TOKEN }}
33
publish_dir: ./public
0 commit comments