We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27fe6b8 commit 4793263Copy full SHA for 4793263
4 files changed
.github/workflows/.publish.yml
@@ -40,9 +40,9 @@ jobs:
40
run: npm run check-version ${{ inputs.expectedVersion }} ${{ inputs.package }}
41
42
- name: Build
43
- run: cd packages/${{ inputs.package }} && npm run build
+ run: npm run build --workspace=@workflowai/${{ inputs.package }}
44
45
- name: Publish to NPM
46
- run: npx tsx ./bin/npm-publish --tag=${{ inputs.tag }}
+ run: npm publish --tag=${{ inputs.tag }} --workspace=@workflowai/${{ inputs.package }} --loglevel=error
47
env:
48
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
.github/workflows/manual_publish.yml
bin/npm-publish.ts
packages/workflowai/src/version.ts
@@ -1,2 +1,2 @@
1
// DO NOT EDIT: file is generated by build process
2
-export const PACKAGE_VERSION = '1.6.5-dev.1';
+export const PACKAGE_VERSION = '1.6.5';
0 commit comments