@egov3/system-design 1.0.11 → 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.
|
@@ -11,6 +11,8 @@ jobs:
|
|
|
11
11
|
|
|
12
12
|
permissions:
|
|
13
13
|
contents: write
|
|
14
|
+
packages: write
|
|
15
|
+
actions: write
|
|
14
16
|
|
|
15
17
|
steps:
|
|
16
18
|
- name: Checkout code
|
|
@@ -53,7 +55,10 @@ jobs:
|
|
|
53
55
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
54
56
|
run: yarn publish --non-interactive --access public
|
|
55
57
|
|
|
58
|
+
- name: Configure GitHub Package Registry Authentication
|
|
59
|
+
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc
|
|
60
|
+
|
|
56
61
|
- name: Publish to GitHub Packages
|
|
57
62
|
env:
|
|
58
|
-
NODE_AUTH_TOKEN: ${{ secrets.
|
|
59
|
-
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"
|