Skip to content

Commit b305406

Browse files
authored
ci(): Fix for publishing action (#10962)
1 parent 22e2ff0 commit b305406

4 files changed

Lines changed: 7 additions & 25 deletions

File tree

.github/workflows/npmpublish-next.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/npmpublish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ permissions:
2222
contents: read
2323
jobs:
2424
publish-npm:
25+
env:
26+
NPM_CONFIG_PROVENANCE: true
27+
permissions:
28+
id-token: write
2529
runs-on: ubuntu-24.04
2630
steps:
2731
- name: Resolve publish metadata
@@ -56,8 +60,6 @@ jobs:
5660
- run: npm ci --audit false --fund false
5761
- run: npm run build
5862
- name: Publish package
59-
env:
60-
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
6163
shell: bash
6264
run: |
6365
if [[ -n "${{ steps.publish.outputs.npm_tag }}" ]]; then

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [next]
44

5+
- ci(): Fix for publishing action [#10962](https://github.com/fabricjs/fabric.js/pull/10962)
6+
57
## [7.3.1]
68

79
- ci(): fix the package version [#10961](https://github.com/fabricjs/fabric.js/pull/10961)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"repository": {
3535
"type": "git",
36-
"url": "https://github.com/fabricjs/fabric.js"
36+
"url": "git+https://github.com/fabricjs/fabric.js.git"
3737
},
3838
"bugs": {
3939
"url": "https://github.com/fabricjs/fabric.js/issues"

0 commit comments

Comments
 (0)