kempo-css 1.0.4 → 1.0.5

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.
@@ -10,11 +10,13 @@ on:
10
10
  jobs:
11
11
  publish:
12
12
  runs-on: ubuntu-latest
13
- permissions:
14
- contents: read
13
+ permissions:
14
+ contents: write
15
15
  id-token: write # enables npm provenance
16
16
  steps:
17
17
  - uses: actions/checkout@v4
18
+ with:
19
+ token: ${{ secrets.GITHUB_TOKEN }}
18
20
 
19
21
  # Setup Node and create an .npmrc that uses the token from NODE_AUTH_TOKEN
20
22
  - uses: actions/setup-node@v4
@@ -33,6 +35,8 @@ jobs:
33
35
  git add package.json package-lock.json || true
34
36
  git commit -m "ci: bump patch version [skip ci]" || echo "No changes to commit"
35
37
  git push origin HEAD:main || echo "No changes to push"
38
+ env:
39
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
40
 
37
41
  # If your package is public and scoped (e.g., @scope/name), keep --access public.
38
42
  # For unscoped public packages, you can omit --access.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kempo-css",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "",
5
5
  "main": "build.js",
6
6
  "scripts": {