@egov3/system-design 1.0.7 → 1.0.11

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.
@@ -26,8 +26,7 @@ jobs:
26
26
  run: yarn install
27
27
 
28
28
  - name: Increment version
29
- run: |
30
- yarn version --patch --no-git-tag-version
29
+ run: yarn version --patch --no-git-tag-version
31
30
 
32
31
  - name: Check PERSONAL_TOKEN
33
32
  run: |
@@ -52,7 +51,9 @@ jobs:
52
51
  - name: Publish to npm
53
52
  env:
54
53
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
55
- run: |
56
- if [ "$(jq -r '.private' package.json)" != "true" ]; then
57
- yarn publish --non-interactive --access public
58
- fi
54
+ run: yarn publish --non-interactive --access public
55
+
56
+ - name: Publish to GitHub Packages
57
+ env:
58
+ NODE_AUTH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
59
+ 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.7",
3
+ "version": "1.0.11",
4
4
  "type": "module",
5
5
  "main": "index.tsx",
6
6
  "private": false,