diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3b180204..0e9a4d1c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -46,7 +46,7 @@ jobs: continue-on-error: true env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - run: pnpm -r publish --filter ./packages --access public + - run: pnpm -r publish --filter './packages/**' --access public continue-on-error: true env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index c4322552..0a56b347 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "lint:fix": "npm run lint -- --fix", "build": "node ./bin/build.js", "prepublish-all": "node ./bin/prepublish.js", - "dist": "pnpm m --filter ./packages run dist" + "dist": "pnpm -r --filter './packages/**' run dist" }, "repository": { "type": "git", @@ -46,4 +46,4 @@ "@types/react": "^17.0.29" } } -} \ No newline at end of file +}