Skip to content
Merged
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
13 changes: 12 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
<<<<<<< HEAD
uses: actions/checkout@v6
=======
uses: actions/checkout@v5
>>>>>>> a10e20c (chore: update publish workflows to use pnpm@10.33.0 with GitHub Packages and Node 24.14.1)

- name: set up node and pnpm
run: |
corepack enable
<<<<<<< HEAD
=======
pnpm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}"
pnpm config set '//npm.pkg.github.com/:_authToken' "${{ secrets.GITHUB_TOKEN }}"
>>>>>>> a10e20c (chore: update publish workflows to use pnpm@10.33.0 with GitHub Packages and Node 24.14.1)
pnpm i

- name: publish
run: pnpm publish --no-git-checks --access public
run: |
pnpm publish --registry https://npm.pkg.github.com --no-git-checks
pnpm publish --registry https://registry.npmjs.org --no-git-checks --access public
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@
},
"types": "./components.d.ts",
"type": "module",
"packageManager": "pnpm@11.5.3",
"packageManager": "pnpm@11.10.0",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=25.0.0",
"onFail": "download"
}
},
"engines": {
"node": ">=25.0.0"
}
}