File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,10 @@ jobs:
298
298
path : dist/*.tgz
299
299
300
300
- name : Publish
301
- run : pnpm --recursive publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
301
+ run : |
302
+ pnpm --recursive --filter="\!@tailwindcss/oxide-wasm32-wasi" publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
303
+ # The wasm package needs a special npm config that isn't read when pnpm --recursive is used
304
+ pushd crates/node/npm/wasm32-wasi; pnpm publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks; popd;
302
305
env :
303
306
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
304
307
Original file line number Diff line number Diff line change @@ -291,7 +291,10 @@ jobs:
291
291
echo "TAILWINDCSS_VERSION=$(node -e 'console.log(require(`./packages/tailwindcss/package.json`).version);')" >> $GITHUB_ENV
292
292
293
293
- name : Publish
294
- run : pnpm --recursive publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
294
+ run : |
295
+ pnpm --recursive --filter="\!@tailwindcss/oxide-wasm32-wasi" publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
296
+ # The wasm package needs a special npm config that isn't read when pnpm --recursive is used
297
+ pushd crates/node/npm/wasm32-wasi; pnpm publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks; popd;
295
298
env :
296
299
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
297
300
You can’t perform that action at this time.
0 commit comments