Skip to content

Commit

Permalink
(chore) Fix-up publish scripts (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher authored Mar 7, 2024
1 parent e5500a2 commit 60b2dd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
server-token: ${{ env.TURBO_TOKEN }}

- name: Version
run: yarn workspaces foreach --worktree --topological version "$(node -e "console.log(require('semver').inc(require('./package.json').version, 'patch'))")-pre.${{ github.run_number }}"
run: yarn workspaces foreach --all --topological --exclude @openmrs/esm-patient-chart version "$(node -e "console.log(require('semver').inc(require('./package.json').version, 'patch'))")-pre.${{ github.run_number }}"

- name: Build
run: yarn turbo build --color --concurrency=5
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
],
"scripts": {
"start": "openmrs develop --sources packages/esm-patient-chart-app/",
"ci:publish": "yarn workspaces foreach --all --topological npm publish --access public --tag latest",
"ci:prepublish": "yarn workspaces foreach --all --topological npm publish --access public --tag next",
"ci:publish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-patient-chart npm publish --access public --tag latest",
"ci:prepublish": "yarn workspaces foreach --all --topological --exclude @openmrs/esm-patient-chart npm publish --access public --tag next",
"ci:bump-form-engine-lib": "yarn up @openmrs/openmrs-form-engine-lib@next",
"release": "yarn workspaces foreach --all --topological version",
"verify": "turbo lint typescript test --color --concurrency=5",
Expand Down

0 comments on commit 60b2dd6

Please sign in to comment.