From dd20c2c7d8ad4263aa8db8dc6601d679705f2888 Mon Sep 17 00:00:00 2001 From: promonkeyli Date: Fri, 23 Aug 2024 16:53:27 +0800 Subject: [PATCH] feat(create-prokit): modify create-prokit workflows --- .github/workflows/create-prokit-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-prokit-publish.yml b/.github/workflows/create-prokit-publish.yml index 4674e49..af4a5ad 100644 --- a/.github/workflows/create-prokit-publish.yml +++ b/.github/workflows/create-prokit-publish.yml @@ -13,11 +13,11 @@ jobs: working-directory: ./packages/create-prokit steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: oven-sh/setup-bun@v1 with: node-version: 20 registry-url: https://registry.npmjs.org/ - - run: npm install - - run: npm publish + - run: bun install + - run: bun publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}