We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9965f7 commit 93d9359Copy full SHA for 93d9359
.github/workflows/deploy-gh-pages.yml
@@ -70,10 +70,11 @@ jobs:
70
date >> README.md
71
git add .
72
git remote add sshtarget [email protected]:zml/docs
73
+ eval "$(ssh-agent -s)"
74
+ ssh-keyscan -t ed25519 github.com > ~/.ssh/known_hosts
75
+ ssh-add - <<< "${{ secrets.DEPLOY_KEY }}"
76
git commit -m "Update GitHub Pages"
77
git push sshtarget docs
-
- # try the x-access url
78
- # the token only has read access!!!!
+ # alternative with the x-access url
79
+ # but: the token only has read access!!!!
80
# git push https://x-access-token:${{ secrets.ORG_PAT }}@github.com/zml/zml.git docs
0 commit comments