Skip to content

Commit 7d9b536

Browse files
committedJul 5, 2024··
ci: setup auth for deployment
1 parent 424f26b commit 7d9b536

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/hexo.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,15 @@ jobs:
4949
path: .deploy_git
5050
- name: Setup deploy auth
5151
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
5256
cd .deploy_git
53-
pwd
5457
git config user.name "github-actions[bot]"
5558
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
59+
env:
60+
DEPLOY_KEY: "${{ secrets.DEPLOY_KEY }}"
5661
- name: Deploy
5762
run: hexo g -d
5863
# End: Deploy hexo blog website.

0 commit comments

Comments
 (0)
Please sign in to comment.