Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/openapi/primitive-api.codegen.json text eol=lf
/packages/api-core/src/api/** text eol=lf
/packages/api-core/src/openapi/*.ts text eol=lf
/cli-rust/src/operation-manifest.json text eol=lf
5 changes: 5 additions & 0 deletions .github/workflows/node-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Node Release

env:
COREPACK_ENABLE_AUTO_PIN: "0"
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

on:
Expand Down Expand Up @@ -75,6 +76,10 @@ jobs:
if: ${{ steps.version.outputs.changed == 'true' && steps.npm_state.outputs.published != 'true' }}
run: make node-install

- name: Run Node SDK release checks
if: ${{ steps.version.outputs.changed == 'true' && steps.npm_state.outputs.published != 'true' }}
run: make node-check node-smoke

- name: Publish package to npm
if: ${{ steps.version.outputs.changed == 'true' && steps.npm_state.outputs.published != 'true' }}
run: scripts/npm-publish-with-retry.sh --package @primitivedotdev/sdk --version "${{ steps.version.outputs.current }}" --directory sdk-node
Expand Down
Loading