50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: use Node.js 16
|
|
uses: actions/setup-node@v2.1.2
|
|
with:
|
|
node-version: '16.x'
|
|
|
|
- name: use pnpm 6.32.2
|
|
uses: pnpm/action-setup@v2.2.1
|
|
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
|
|
pnpm run build:github
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v2.5.0
|
|
env:
|
|
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
|
PUBLISH_BRANCH: gh-pages
|
|
PUBLISH_DIR: ./dist
|
|
with:
|
|
forceOrphan: true
|