diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 30c2cbd9..03168ceb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,6 +19,7 @@ jobs: node-version: '20.x' registry-url: 'https://registry.npmjs.org' - run: yarn + working-directory: '.' - run: yarn build - run: yarn npm publish env: @@ -39,6 +40,7 @@ jobs: node-version: '20.x' registry-url: 'https://registry.npmjs.org' - run: yarn + working-directory: '.' - run: yarn build - run: yarn npm publish env: diff --git a/packages/react-client/.yarnrc b/packages/react-client/.yarnrc new file mode 100644 index 00000000..95058b74 --- /dev/null +++ b/packages/react-client/.yarnrc @@ -0,0 +1,2 @@ +npmRegistryServer: "https://npm.pkg.github.com" +npmAuthToken: "asdf" \ No newline at end of file diff --git a/packages/ts-client/.yarnrc b/packages/ts-client/.yarnrc new file mode 100644 index 00000000..e30c111d --- /dev/null +++ b/packages/ts-client/.yarnrc @@ -0,0 +1,2 @@ +npmRegistryServer: "https://registry.npmjs.org/" +npmAuthToken: ${NODE_AUTH_TOKEN} \ No newline at end of file