You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/pre_release.yml
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -83,18 +83,14 @@ jobs:
83
83
run: npx lerna publish ${{ inputs.version }} --preid next --dist-tag next --force-publish --include-merged-tags --no-private --no-changelog --yes
84
84
env:
85
85
GH_TOKEN: ${{ secrets.GH_TOKEN }}
86
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
87
86
88
87
- name: Publish to NPM (modified packages)
89
88
if: ${{ inputs.version != 'premajor' }}
90
89
run: npx lerna publish ${{ inputs.version }} --preid next --dist-tag next --include-merged-tags --no-private --no-changelog --yes
91
90
env:
92
91
GH_TOKEN: ${{ secrets.GH_TOKEN }}
93
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
94
92
95
93
- name: Deprecate Solar Theme on npm
96
94
run: |
97
95
DEPRECATION_MESSAGE=$(npm info @refinitiv-ui/solar-theme deprecated)
98
96
if [[ -z $DEPRECATION_MESSAGE ]]; then npm deprecate @refinitiv-ui/solar-theme "Solar theme is deprecated. Consider migrating to @refinitiv-ui/halo-theme instead."; fi
Copy file name to clipboardExpand all lines: .github/workflows/prod_release.yml
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -96,15 +96,11 @@ jobs:
96
96
97
97
- name: Publish to NPM
98
98
run: npx lerna publish from-git --yes
99
-
env:
100
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
101
99
102
100
- name: Deprecate Solar Theme on npm
103
101
run: |
104
102
DEPRECATION_MESSAGE=$(npm info @refinitiv-ui/solar-theme deprecated)
105
103
if [[ -z $DEPRECATION_MESSAGE ]]; then npm deprecate @refinitiv-ui/solar-theme "Solar theme is deprecated. Consider migrating to @refinitiv-ui/halo-theme instead."; fi
106
-
env:
107
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
108
104
109
105
- name: Publish Docs
110
106
run: curl -X POST "https://api.cloudflare.com/client/v4/pages/webhooks/deploy_hooks/${{ secrets.CF_DEPLOY_HOOKS_ID_V7 }}"
0 commit comments