From 7e9d4a98e5c94ca6d39832dd3959524593ff3d65 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 20 Apr 2021 20:51:11 +0800 Subject: [PATCH] build: depoly v2 site (#8587) --- .github/workflows/deploy-v2-site.yml | 28 +++++++++++++++++++ .../{deploy-site.yml => deploy-v3-site.yml} | 8 ++++-- .github/workflows/release-tag.yml | 2 +- .../workflows/{sync.yml => sync-gitee.yml} | 0 4 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/deploy-v2-site.yml rename .github/workflows/{deploy-site.yml => deploy-v3-site.yml} (79%) rename .github/workflows/{sync.yml => sync-gitee.yml} (100%) diff --git a/.github/workflows/deploy-v2-site.yml b/.github/workflows/deploy-v2-site.yml new file mode 100644 index 000000000..3e6338ddf --- /dev/null +++ b/.github/workflows/deploy-v2-site.yml @@ -0,0 +1,28 @@ +name: Deploy V2 Site + +on: + push: + tags: + - 'v2*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2 + with: + ref: '2.x' + + - name: Install dependencies + uses: bahmutov/npm-install@v1 + + - name: Build Site + run: npx --no-install vant-cli build-site + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4.1.1 + with: + branch: gh-pages + folder: site + clean: false diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-v3-site.yml similarity index 79% rename from .github/workflows/deploy-site.yml rename to .github/workflows/deploy-v3-site.yml index 830c28b18..0be8a3bda 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-v3-site.yml @@ -1,9 +1,9 @@ -name: Deploy Site +name: Deploy V3 Site on: push: tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + - 'v3*' # Push events to matching v*, i.e. v1.0, v20.15.10 jobs: build-and-deploy: @@ -11,7 +11,9 @@ jobs: steps: - name: Checkout 🛎️ uses: actions/checkout@v2 - + with: + ref: 'dev' + - name: Install dependencies uses: bahmutov/npm-install@v1 diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 659f15269..cb9d9e7f4 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -1,4 +1,4 @@ -name: Create Release +name: Create Release Tag on: push: diff --git a/.github/workflows/sync.yml b/.github/workflows/sync-gitee.yml similarity index 100% rename from .github/workflows/sync.yml rename to .github/workflows/sync-gitee.yml