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