Skip to content

Commit fcc6a17

Browse files
fix(ci): NPM public access release (#239)
This commit fixes the NPM publish to use the public access level (the default is private, which we don't use)
1 parent 5640bfe commit fcc6a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
export OPT_RELEASE_TAG="--tag ${{ needs.meta.outputs.prerelease-tag }}";
218218
fi
219219
220-
npm publish -w @bytecodealliance/componentize-js $OPT_DRY_RUN $OPT_RELEASE_TAG $PACKAGE_DIR
220+
npm publish -w @bytecodealliance/componentize-js $OPT_DRY_RUN $OPT_RELEASE_TAG $PACKAGE_DIR --access=public
221221
222222
create-gh-release:
223223
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)