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 a27c6e7 commit e7ac2b3Copy full SHA for e7ac2b3
.github/workflows/publish-site.yml
@@ -17,6 +17,15 @@ jobs:
17
pages: write
18
id-token: write
19
steps:
20
+ - uses: actions/checkout@v4
21
+ # Avoid issues with depending on a particular version of this
22
+ # package from another package.
23
+ # We need our tags in order to calculate the version.
24
+ # See https://github.com/astral-sh/uv/issues/8148.
25
+ with:
26
+ fetch-depth: 0
27
+ fetch-tags: true
28
+
29
- id: deployment
30
uses: sphinx-notes/pages@v3
31
with:
@@ -25,3 +34,4 @@ jobs:
34
python_version: '3.13'
35
sphinx_build_options: -W
36
publish: ${{ github.ref_name == 'main' }}
37
+ checkout: false
0 commit comments