We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 619aa2a commit a256dc0Copy full SHA for a256dc0
1 file changed
.github/workflows/deploy-docs.yml
@@ -5,13 +5,29 @@ on:
5
branches:
6
- readthedocs
7
8
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
9
+permissions:
10
+ contents: write
11
+ pages: write
12
+ id-token: write
13
+
14
jobs:
15
deploy:
16
runs-on: ubuntu-latest
17
steps:
18
+ - name: Debug GitHub Actions permissions
19
+ run: |
20
+ echo "GitHub Actions permissions:"
21
+ echo "GITHUB_TOKEN: ${{ github.token }}"
22
23
- uses: actions/checkout@v4
24
with:
25
fetch-depth: 0
26
27
+ - name: Debug git configuration
28
29
+ git config --list
30
+ git remote -v
31
- name: Set up Python 3.13
32
uses: actions/setup-python@v5
33
0 commit comments