diff --git a/.github/workflows/components-test-build-deploy.yaml b/.github/workflows/components-test-build-deploy.yaml index ce6dbc8bbbf..97156be1869 100644 --- a/.github/workflows/components-test-build-deploy.yaml +++ b/.github/workflows/components-test-build-deploy.yaml @@ -223,8 +223,7 @@ jobs: json -I -f ./components/package.json -e "this.version=\"$VERSION_STRING\"" json -I -f ./components/package.json -e "this.dependencies['@opentrons/shared-data']=\"$VERSION_STRING\"" - name: 'publish to npm registry' - run: | - cd ./components && npm publish --provenace --access public + run: cd ./components && npm publish --provenace --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/shared-data-test-lint-deploy.yaml b/.github/workflows/shared-data-test-lint-deploy.yaml index e2cb694bbc2..fb8d4a2a41e 100644 --- a/.github/workflows/shared-data-test-lint-deploy.yaml +++ b/.github/workflows/shared-data-test-lint-deploy.yaml @@ -253,8 +253,7 @@ jobs: VERSION_STRING=$(echo ${{ github.ref }} | sed -E 's/refs\/tags\/(components|shared-data)@//') json -I -f ./shared-data/package.json -e "this.version=\"$VERSION_STRING\"" - name: 'publish to npm registry' - run: | - cd ./shared-data && npm publish --provenace --access public + run: cd ./shared-data && npm publish --provenace --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}