From d270ad133599ac8919ae08136d06a21c29c6b3d3 Mon Sep 17 00:00:00 2001 From: Victor Adossi Date: Mon, 7 Jul 2025 18:53:23 +0900 Subject: [PATCH] fix(ci): NPM public access release This commit fixes the NPM publish to use the public access level (the default is private, which we don't use) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 889580c8..d826084c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -217,7 +217,7 @@ jobs: export OPT_RELEASE_TAG="--tag ${{ needs.meta.outputs.prerelease-tag }}"; fi - npm publish -w @bytecodealliance/componentize-js $OPT_DRY_RUN $OPT_RELEASE_TAG $PACKAGE_DIR + npm publish -w @bytecodealliance/componentize-js $OPT_DRY_RUN $OPT_RELEASE_TAG $PACKAGE_DIR --access=public create-gh-release: runs-on: ubuntu-24.04