From 9eeed2c6c362566523a928ce8eba41d4efb397ce Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 20 Apr 2021 20:31:52 +0800 Subject: [PATCH] build: add some github actions (#4158) * build: add some github actions * chore: upd --- .github/workflows/deploy-site.yml | 26 +++++++++++++++++++ .github/workflows/release-tag.yml | 23 ++++++++++++++++ .../workflows/{sync.yml => sync-gitee.yml} | 12 --------- 3 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/deploy-site.yml create mode 100644 .github/workflows/release-tag.yml rename .github/workflows/{sync.yml => sync-gitee.yml} (57%) diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml new file mode 100644 index 00000000..6717401c --- /dev/null +++ b/.github/workflows/deploy-site.yml @@ -0,0 +1,26 @@ +name: Deploy Site + +on: + push: + tags: + - 'v*' # 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 + + - 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-exclude: 0.x diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml new file mode 100644 index 00000000..39553692 --- /dev/null +++ b/.github/workflows/release-tag.yml @@ -0,0 +1,23 @@ +name: Create Release Tag + +on: + push: + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@master + - name: Create Release for Tag + id: release_tag + uses: yyx990803/release-tag@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + body: | + 更新内容参见 [CHANGELOG](https://vant-contrib.gitee.io/vant-weapp/#/changelog)。 diff --git a/.github/workflows/sync.yml b/.github/workflows/sync-gitee.yml similarity index 57% rename from .github/workflows/sync.yml rename to .github/workflows/sync-gitee.yml index 340e6220..68176cd0 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync-gitee.yml @@ -18,15 +18,3 @@ jobs: source-repo: git@github.com:youzan/vant-weapp.git # 注意替换为你的 Gitee 目标仓库地址 destination-repo: git@gitee.com:vant-contrib/vant-weapp.git - - - name: Build Gitee Pages - uses: yanglbme/gitee-pages-action@master - with: - # 注意替换为你的 Gitee 用户名 - gitee-username: chenjiahan - # 注意在 Settings->Secrets 配置 GITEE_PASSWORD - gitee-password: ${{ secrets.GITEE_PASSWORD }} - # 注意替换为你的 Gitee 仓库 - gitee-repo: vant-contrib/vant-weapp - # 要部署的分支 - branch: gh-pages