diff --git a/.github/workflows/components-test-build-deploy.yaml b/.github/workflows/components-test-build-deploy.yaml index 5183655512b..a30a7f8cc1b 100644 --- a/.github/workflows/components-test-build-deploy.yaml +++ b/.github/workflows/components-test-build-deploy.yaml @@ -175,7 +175,7 @@ jobs: - uses: 'actions/setup-node@v3' with: node-version: '16' - registry-url: 'https://registry.npmjs.org' + registry-url: 'https://registry.npmjs.org/' - name: 'cache yarn cache' uses: actions/cache@v3 with: @@ -201,10 +201,10 @@ 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' - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | cd ./components && npm publish --provenace --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/shared-data-test-lint-deploy.yaml b/.github/workflows/shared-data-test-lint-deploy.yaml index b103b3f2e4f..bd0fb06408c 100644 --- a/.github/workflows/shared-data-test-lint-deploy.yaml +++ b/.github/workflows/shared-data-test-lint-deploy.yaml @@ -226,7 +226,7 @@ jobs: - uses: 'actions/setup-node@v3' with: node-version: '16' - registry-url: 'https://registry.npmjs.org' + registry-url: 'https://registry.npmjs.org/' - name: 'cache yarn cache' uses: actions/cache@v3 with: @@ -251,8 +251,8 @@ 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' - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | cd ./shared-data && npm publish --provenace --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/shared-data/package.json b/shared-data/package.json index 198b97d44ee..7f61401f4ff 100755 --- a/shared-data/package.json +++ b/shared-data/package.json @@ -1,6 +1,6 @@ { "name": "@opentrons/shared-data", - "version": "0.0.0-alpha.16", + "version": "0.0.0-dev", "description": "Shared system definitions and utilities for Opentrons robots and software", "repository": { "type": "git",