Skip to content

Commit 25539e3

Browse files
Fix release script
1 parent aa836d3 commit 25539e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/release-insiders.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ jobs:
299299

300300
- name: Publish
301301
run: |
302-
pnpm --recursive --filter="\!@tailwindcss/oxide-wasm32-wasi" publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
302+
pnpm --recursive --filter="!@tailwindcss/oxide-wasm32-wasi" publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
303303
# The wasm package needs a special npm config that isn't read when pnpm --recursive is used
304304
pushd crates/node/npm/wasm32-wasi; pnpm publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks; popd;
305305
env:

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ jobs:
292292
293293
- name: Publish
294294
run: |
295-
pnpm --recursive --filter="\!@tailwindcss/oxide-wasm32-wasi" publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
295+
pnpm --recursive --filter="!@tailwindcss/oxide-wasm32-wasi" publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks
296296
# The wasm package needs a special npm config that isn't read when pnpm --recursive is used
297297
pushd crates/node/npm/wasm32-wasi; pnpm publish --tag ${{ env.RELEASE_CHANNEL }} --no-git-checks; popd;
298298
env:

0 commit comments

Comments
 (0)