Skip to content

Commit

Permalink
change order of pub calls
Browse files Browse the repository at this point in the history
  • Loading branch information
b-cooper committed Dec 4, 2023
1 parent 1c985d4 commit 547f414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/components-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

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

0 comments on commit 547f414

Please sign in to comment.