Skip to content

Commit

Permalink
tweak some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
b-cooper committed Dec 1, 2023
1 parent 8611d80 commit 48634d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/components-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}



6 changes: 3 additions & 3 deletions .github/workflows/shared-data-test-lint-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}

2 changes: 1 addition & 1 deletion shared-data/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 48634d5

Please sign in to comment.