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 397287a commit d8f2c51Copy full SHA for d8f2c51
.ci/azure-pipelines.yml
@@ -225,9 +225,10 @@ jobs:
225
- powershell: |
226
git init
227
git checkout -b $(GH_DOC_BRANCH)
228
- git config --local user.name "pyansys-ci-bot"
229
- git config --local user.email "$(GH_EMAIL)"
230
- git config --local http.https://github.com/.extraheader "AUTHORIZATION: Basic ${GH_PAT}"
+ git config --global credential.helper store
+ ps: Set-Content -Path "$HOME\.git-credentials" -Value "https://$GH_PAT:[email protected]`n" -NoNewline
+ git config --global user.name "pyansys-ci-bot"
231
+ git config --global user.email "$(GH_EMAIL)"
232
New-Item -ItemType file .nojekyll
233
git add .
234
git commit -m "Documentation generated by $(Build.DefinitionName)"
0 commit comments