Skip to content

Deploy Site To Server #8

Deploy Site To Server

Deploy Site To Server #8

name: Deploy Site To Server
on:
workflow_dispatch:
push:
branches: [main]
paths-ignore:
- "**.md"
- ".vscode/**"
- ".env*"
- ".eslint*"
- "tsconfig*"
schedule:
# 北京时间凌晨5点
- cron: "0 21 * * *"
jobs:
main-branch-deploy:
if: github.repository == 'Aisen60/vant-theme'
runs-on: ubuntu-latest
env:
# 设置时区环境变量
TZ: Asia/Shanghai
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SECRETS_HOST }}
port: ${{ secrets.SECRETS_PORT }}
username: ${{ secrets.SECRETS_USERNAME }}
password: ${{ secrets.SECRETS_PASSWORD }}
script: |
cd /opt/cxs/vant-theme
git checkout .
git pull origin main
pnpm install
npm run build