diff --git a/.github/workflows/deploy-wallet-connectors.yml b/.github/workflows/deploy-wallet-connectors.yml index 3effcdf12..d9fc0bd49 100644 --- a/.github/workflows/deploy-wallet-connectors.yml +++ b/.github/workflows/deploy-wallet-connectors.yml @@ -115,16 +115,10 @@ jobs: cache: yarn registry-url: 'https://registry.npmjs.org' - - name: Setup .yarnrc.yml - run: | - yarn config set npmRegistryServer "https://registry.npmjs.org" - yarn config set npmAlwaysAuth true - yarn config set npmAuthToken $NPM_AUTH_TOKEN - env: - NPM_AUTH_TOKEN: '${{secrets.NPM_TOKEN}}' - - name: Publish to NPM - run: yarn workspace @concordium/wallet-connectors npm publish --access public + run: npm publish --workspace "@concordium/wallet-connectors" --access public + env: + NODE_AUTH_TOKEN: '${{secrets.NPM_TOKEN}}' - name: Create a GitHub release uses: ncipollo/release-action@v1