ci: 修改 github actions 配置文件
This commit is contained in:
parent
621a2304e7
commit
c22cb3b35c
14
.github/workflows/deploy.yml
vendored
14
.github/workflows/deploy.yml
vendored
@ -22,6 +22,18 @@ jobs:
|
||||
with:
|
||||
version: 6.32.2
|
||||
|
||||
- name: Set SSH Environment
|
||||
env:
|
||||
DOCS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
run: |
|
||||
mkdir -p ~/.ssh/
|
||||
echo "$ACTIONS_DEPLOY_KEY" > ~/.ssh/id_rsa
|
||||
chmod 600 ~/.ssh/id_rsa
|
||||
ssh-keyscan github.com > ~/.ssh/known_hosts
|
||||
chmod 700 ~/.ssh && chmod 600 ~/.ssh/*
|
||||
git config --local user.email "zclzone@outlook.com"
|
||||
git config --local user.name "zclzone"
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
pnpm install
|
||||
@ -30,7 +42,7 @@ jobs:
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v2.5.0
|
||||
env:
|
||||
ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
|
||||
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
PUBLISH_BRANCH: gh-pages
|
||||
PUBLISH_DIR: ./dist
|
||||
with:
|
||||
|
Loading…
Reference in New Issue
Block a user