@egov3/system-design 1.0.12 → 1.0.13

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.
@@ -12,6 +12,7 @@ jobs:
12
12
  permissions:
13
13
  contents: write
14
14
  packages: write
15
+ actions: write
15
16
 
16
17
  steps:
17
18
  - name: Checkout code
@@ -54,7 +55,10 @@ jobs:
54
55
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55
56
  run: yarn publish --non-interactive --access public
56
57
 
58
+ - name: Configure GitHub Package Registry Authentication
59
+ run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
60
+
57
61
  - name: Publish to GitHub Packages
58
62
  env:
59
- NODE_AUTH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
60
- run: yarn publish --non-interactive --registry https://npm.pkg.github.com
63
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64
+ run: yarn publish --non-interactive --registry "https://npm.pkg.github.com"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@egov3/system-design",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "type": "module",
5
5
  "main": "index.tsx",
6
6
  "private": false,