From b3f340ccc4c20ed7ee9f55dbfc9db6a365d432cd Mon Sep 17 00:00:00 2001 From: Davide Segullo Date: Tue, 29 Oct 2024 16:15:49 +0100 Subject: [PATCH] ci: :green_heart: fix access public for new packages --- .github/workflows/pr-checks.yml | 2 +- .github/workflows/release-production.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 491c118..dbe9a1f 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -66,7 +66,7 @@ jobs: # Use npx instead of yarn because yarn automagically sets NPM_* environment variables # like NPM_CONFIG_REGISTRY so npm publish ends up ignoring the .npmrc file # which is set up by `setup-node` action. - run: pnpx nx release publish --verbose --dry-run + run: pnpx nx release publish --access public --verbose --dry-run # Step 11: Upload artifacts - name: Upload artifacts diff --git a/.github/workflows/release-production.yml b/.github/workflows/release-production.yml index 3bfc8cc..4d6cc13 100644 --- a/.github/workflows/release-production.yml +++ b/.github/workflows/release-production.yml @@ -81,7 +81,7 @@ jobs: # Use npx instead of yarn because yarn automagically sets NPM_* environment variables # like NPM_CONFIG_REGISTRY so npm publish ends up ignoring the .npmrc file # which is set up by `setup-node` action. - run: pnpx nx release publish --verbose --tag + run: pnpx nx release publish --access public --verbose --tag # Step 13: Upload artifacts - name: Upload artifacts