From 2f284484b7be09abfbcc170406cc6945c81c820c Mon Sep 17 00:00:00 2001 From: Benji Visser Date: Thu, 25 Apr 2024 20:27:15 -0400 Subject: [PATCH] set publish config Signed-off-by: Benji Visser --- tooling/github/setup/action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tooling/github/setup/action.yml b/tooling/github/setup/action.yml index 681f93f..c1efe45 100644 --- a/tooling/github/setup/action.yml +++ b/tooling/github/setup/action.yml @@ -11,8 +11,14 @@ runs: registry-url: "https://registry.npmjs.org" cache: "pnpm" + - name: set publishing config + shell: bash + run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + - shell: bash run: pnpm add -g turbo - shell: bash - run: pnpm install \ No newline at end of file + run: pnpm install