From 427678a906ded921fe1af354aacf269021b7d0d0 Mon Sep 17 00:00:00 2001 From: Eiinu Date: Fri, 8 Dec 2023 00:08:38 +0800 Subject: [PATCH] chore(ci): sync-pkg --- .github/workflows/sync-pkg.yml | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/sync-pkg.yml diff --git a/.github/workflows/sync-pkg.yml b/.github/workflows/sync-pkg.yml new file mode 100644 index 00000000000..da8cc777e12 --- /dev/null +++ b/.github/workflows/sync-pkg.yml @@ -0,0 +1,42 @@ +name: sync to pkg branch + +permissions: + contents: write + +on: + push: + branches: + - v4 # default branch + +jobs: + copy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install pnpm + run: corepack enable + + - uses: actions/setup-node@v4 + with: + node-version: '18' + cache: 'pnpm' + + - name: Install dependencies + run: pnpm install + + - name: Build @nutui/nutui + run: pnpm build + + - name: Build @nutui/nutui-taro + run: pnpm build:taro + + - name: Sync + uses: JamesIves/github-pages-deploy-action@v4.5.0 + with: + branch: pkg # action 应该部署到的分支 。 + folder: publish #操作应该部署的文件夹 。 + clean: false + repository-name: eiinu/nutui + token: ${{ secrets.GIT_ACTION }} + target-folder: publish