We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 424f26b commit 7d9b536Copy full SHA for 7d9b536
.github/workflows/hexo.yml
@@ -49,10 +49,15 @@ jobs:
49
path: .deploy_git
50
- name: Setup deploy auth
51
run: |
52
+ mkdir -p ~/.ssh/
53
+ echo "$DEPLOY_KEY" > ~/.ssh/id_rsa
54
+ chmod 600 ~/.ssh/id_rsa
55
+ ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
56
cd .deploy_git
- pwd
57
git config user.name "github-actions[bot]"
58
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
59
+ env:
60
+ DEPLOY_KEY: "${{ secrets.DEPLOY_KEY }}"
61
- name: Deploy
62
run: hexo g -d
63
# End: Deploy hexo blog website.
0 commit comments