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.
2 parents f14727e + 2113cb7 commit 0717077Copy full SHA for 0717077
.github/workflows/build-mkdocs-website.yml
@@ -6,7 +6,7 @@ on:
6
branches: ["main","devel"]
7
types: [closed]
8
paths:
9
- - 'build-mkdocs-website.yml'
+ - '.github/workflows/build-mkdocs-website.yml'
10
- 'docs/**/**'
11
- 'mkdocs.yml'
12
@@ -65,5 +65,7 @@ jobs:
65
run: |
66
echo "Deploying from branch: ${{ github.ref_name }}"
67
echo "Commit: ${{ github.sha }}"
68
- git remote set-url origin https://x-access-token:${GH_PAT}@github.com/${{ steps.config.outputs.target_repo }}
+ git config --global credential.helper store
69
+ echo "https://x-access-token:${GH_PAT}@github.com" > ~/.git-credentials
70
+ git remote set-url origin https://github.com/${{ steps.config.outputs.target_repo }}
71
mkdocs gh-deploy --config-file mkdocs.yml --remote-branch gh-pages --force
0 commit comments