We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10b72dc commit 7932f0bCopy full SHA for 7932f0b
1 file changed
.github/workflows/deploy-docs.yml
@@ -23,7 +23,17 @@ jobs:
23
steps:
24
- name: Checkout repository
25
uses: actions/checkout@v6
26
+ with:
27
+ fetch-tags: true
28
+ fetch-depth: 0
29
+ - name: Set user name and email for git
30
+ run: |
31
+ # Needed so we can apply patches
32
+ git config --global user.name "GitHub Actions"
33
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
34
- uses: ./.github/actions/generate-docs
35
36
+ build: all_with_old
37
- name: Setup pages
38
uses: actions/configure-pages@v5
39
- name: Upload artifact
0 commit comments