codemirror-mode-zig 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,7 +18,7 @@ jobs:
18
18
  - uses: actions/setup-node@v4
19
19
  with:
20
20
  node-version: "20.x"
21
- registry-url: "https://registry.npmjs.org/"
21
+ registry-url: "https://registry.npmjs.org"
22
22
  - run: npm ci
23
23
  - run: npm publish --provenance
24
24
  env:
@@ -28,13 +28,17 @@ jobs:
28
28
  permissions:
29
29
  contents: read
30
30
  id-token: write
31
+ packages: write
31
32
  steps:
32
33
  - uses: actions/checkout@v4
33
34
  - uses: actions/setup-node@v4
34
35
  with:
35
36
  node-version: "20.x"
36
- registry-url: "https://npm.pkg.github.com/"
37
+ always-auth: true
38
+ registry-url: "https://npm.pkg.github.com"
37
39
  - run: npm ci
38
- - run: npm publish --provenance
40
+ - run: |
41
+ npm pkg set name="@imkylecat/codemirror-mode-zig"
42
+ npm publish --provenance --access public --registry https://npm.pkg.github.com
39
43
  env:
40
44
  NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemirror-mode-zig",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -16,7 +16,7 @@
16
16
  "url": "git+https://github.com/imkylecat/codemirror-mode-zig.git"
17
17
  },
18
18
  "author": "imkylecat",
19
- "license": "ISC",
19
+ "license": "MIT",
20
20
  "bugs": {
21
21
  "url": "https://github.com/imkylecat/codemirror-mode-zig/issues"
22
22
  },