Skip to content

Commit 6d351b1

Browse files
authored
Fixup docs-build-deploy action on main
Our first github actions job when committing on main is to build the docs and push to a branch for github pages. This is only triggered for changes to the main branch. I recently changed the checkout step used for this job to avoid persisting the credentials to disk on the runner (for security) but this stops the push from happening. This fixup patch reverts that case.
1 parent 0a7495d commit 6d351b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs-build-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
1717
with:
18-
persist-credentials: false
18+
persist-credentials: true
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.12'

0 commit comments

Comments
 (0)