From 2a7dce33c63f7dd61d0a43ee758cf9ab1450c938 Mon Sep 17 00:00:00 2001 From: Eiinu Date: Fri, 8 Dec 2023 00:33:02 +0800 Subject: [PATCH] feat(ci): add sync-pkg.yml --- .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 0000000000..16bcfbab45 --- /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 + target-folder: publish + git-config-name: github-actions + git-config-email: action@github.com