File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 10
10
release_please :
11
11
runs-on : ubuntu-latest
12
12
permissions :
13
+ id-token : write
13
14
contents : write
14
15
pull-requests : write
15
16
steps :
@@ -102,16 +103,17 @@ jobs:
102
103
103
104
echo "Publishing auth-js now..."
104
105
105
- npm publish --tag "$DIST_TAG"
106
+ npm publish --provenance -- tag "$DIST_TAG"
106
107
107
108
echo "Publishing gotrue-js now..."
108
109
109
110
for f in package.json package-lock.json
110
111
do
111
- sed -i 's|\(["/]\)auth-js|\1gotrue-js|g' "$f"
112
+ # only replace name not repository, homepage, etc.
113
+ sed -i 's|\("name":[[:space:]]*"@supabase/\)auth-js|\1gotrue-js|g' "$f"
112
114
done
113
115
114
- npm publish --tag "$DIST_TAG"
116
+ npm publish --provenance -- tag "$DIST_TAG"
115
117
116
118
- name : Create GitHub release and branches
117
119
if : ${{ steps.release.outputs.release_created == 'true' || steps.release.outputs.prs_created == 'true' }}
Original file line number Diff line number Diff line change 20
20
"main" : " dist/main/index.js" ,
21
21
"module" : " dist/module/index.js" ,
22
22
"types" : " dist/module/index.d.ts" ,
23
- "repository" : " supabase/auth-js" ,
23
+ "repository" : " github: supabase/auth-js" ,
24
24
"scripts" : {
25
25
"clean" : " rimraf dist docs" ,
26
26
"coverage" : " echo \" run npm test\" " ,
You can’t perform that action at this time.
0 commit comments