This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
v0.2.0 #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Site And Sync to Gitee | |
on: | |
push: | |
branches: [dev, main] | |
jobs: | |
deploy-site-sync-gitee: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Set node version to 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14.x' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm bootstrap | |
- name: Build site | |
run: cd packages/varlet-vue2-ui && pnpm build | |
- name: Deploy site | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-page | |
folder: packages/varlet-vue2-ui/site | |
- name: Sync to Gitee | |
uses: wearerequired/git-mirror-action@master | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY_FOR_VUE2 }} | |
with: | |
source-repo: [email protected]:varletjs/varlet-vue2.git | |
destination-repo: [email protected]:varlet/varlet-ui-vue2.git |