This repository was archived by the owner on Mar 5, 2025. It is now read-only.
File tree 4 files changed +13
-10
lines changed
4 files changed +13
-10
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @nordeck/element-web-guest-module ' : major
3
+ ' @nordeck/element-web-widget-lifecycle-module ' : major
4
+ ' @nordeck/synapse-guest-module ' : major
5
+ ---
6
+
7
+ First stable release.
Original file line number Diff line number Diff line change 18
18
with :
19
19
node-version : ' 20'
20
20
cache : ' yarn'
21
- registry-url : ' https://npm.pkg.github.com'
22
- scope : ' @nordeck'
21
+ registry-url : ' https://registry.npmjs.org'
23
22
24
23
- name : yarn install
25
24
run : yarn install --frozen-lockfile
@@ -125,8 +124,7 @@ jobs:
125
124
with :
126
125
node-version : ' 20'
127
126
cache : ' yarn'
128
- registry-url : ' https://npm.pkg.github.com'
129
- scope : ' @nordeck'
127
+ registry-url : ' https://registry.npmjs.org'
130
128
131
129
- name : yarn install
132
130
run : yarn install --frozen-lockfile
@@ -148,7 +146,7 @@ jobs:
148
146
publish : yarn release
149
147
env :
150
148
GITHUB_TOKEN : ${{ steps.generate_token.outputs.token }}
151
- NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
149
+ NODE_AUTH_TOKEN : ${{ secrets.NODE_AUTH_TOKEN }}
152
150
153
151
e2e :
154
152
name : Run e2e tests
@@ -161,8 +159,7 @@ jobs:
161
159
with :
162
160
node-version : ' 20'
163
161
cache : ' yarn'
164
- registry-url : ' https://npm.pkg.github.com'
165
- scope : ' @nordeck'
162
+ registry-url : ' https://registry.npmjs.org'
166
163
167
164
- name : yarn install
168
165
run : yarn install --frozen-lockfile
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ for (let p of packages) {
45
45
46
46
console . log ( `🔄 Publish package ${ name } @${ version } ` ) ;
47
47
48
- child_process . execSync ( 'npm publish --registry https://npm.pkg.github.com ' , {
48
+ child_process . execSync ( 'npm publish --registry https://registry.npmjs.org ' , {
49
49
cwd : packagePath ,
50
50
} ) ;
51
51
@@ -60,7 +60,7 @@ console.log('Done!');
60
60
function versionNeedsUpload ( name , version ) {
61
61
try {
62
62
const result = child_process . execSync (
63
- `npm view "${ name } @${ version } " --registry https://npm.pkg.github.com --json` ,
63
+ `npm view "${ name } @${ version } " --registry https://registry.npmjs.org --json` ,
64
64
) ;
65
65
66
66
// this line throws if not exists
You can’t perform that action at this time.
0 commit comments