We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90bf04a commit 09595d7Copy full SHA for 09595d7
1 file changed
.github/workflows/publish-single.yml
@@ -0,0 +1,25 @@
1
+name: Publish Package to npmjs
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ publish-single:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: write
10
+ id-token: write
11
+ steps:
12
+ - uses: actions/checkout@v5
13
14
+ - uses: pnpm/action-setup@v4
15
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: "24.x"
19
+ registry-url: "https://registry.npmjs.org"
20
+ cache: "pnpm"
21
22
+ - run: pnpm install --frozen-lockfile
23
24
+ - name: Publish single package
25
+ run: pnpm publish --no-git-checks
0 commit comments