We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc4bfb7 commit b0790d8Copy full SHA for b0790d8
1 file changed
.github/workflows/publish.yml
@@ -39,7 +39,9 @@ jobs:
39
${{ runner.os }}-yarn-
40
41
- name: Install Packages
42
- run: yarn install --frozen-lockfile --prefer-offline
+ # NOTE: The --ignore-scripts flag is required to prevent leakage of NPM_TOKEN value
43
+ # See https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#use-private-packages
44
+ run: yarn install --frozen-lockfile --prefer-offline --ignore-scripts
45
46
- name: Build
47
run: yarn prepack
0 commit comments