Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.

Commit 25f9793

Browse files
committed
fix(ci): publish not working
1 parent 478b981 commit 25f9793

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/release-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
- uses: actions/setup-node@v4
1212
with:
1313
node-version: 22
14-
registry-url: https://npm.pkg.github.com/
14+
always-auth: true
15+
registry-url: https://npm.pkg.github.com/
16+
scope: '@triliumnext'
1517
- run: yarn install
1618
- run: yarn push
1719
env:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "express-partial-content",
2+
"name": "@triliumnext/express-partial-content",
33
"description": "A partial content handler implementation for any readable stream with Express. Based on this blog post: https://www.codeproject.com/Articles/813480/HTTP-Partial-Content-In-Node-js.",
44
"version": "1.0.1",
55
"main": "dist/index.js",
@@ -14,7 +14,7 @@
1414
"build:watch": "npx tsc -w",
1515
"build:dev": "npx tsc && yarn copy-assets",
1616
"build:prod": "yarn clean && cross-env NODE_ENV=production tsc -p ./tsconfig.production.json",
17-
"push": "yarn test && yarn build:prod && yarn publish",
17+
"push": "yarn test && yarn build:prod && yarn npm publish",
1818
"run:examples:file": "node ./dist/examples/express-file-server/index.js",
1919
"run:examples:mongo": "node ./dist/examples/express-mongo-server/index.js"
2020
},

0 commit comments

Comments
 (0)