@egov3/system-design 1.0.10 → 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
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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
|