File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,12 @@ async function run(): Promise<void> {
89
89
- ${ githubDotEnv }
90
90
91
91
A token can be created at:
92
- - https://github.com/settings/tokens/new?scopes=repo
92
+ - https://github.com/settings/personal-access-tokens/new
93
+
94
+ The token must have:
95
+ - Repository Access
96
+ - Contents - read and write (for creating release)
97
+ - Metadata - read-only (required by Contents)
93
98
`
94
99
) ;
95
100
@@ -100,7 +105,7 @@ A token can be created at:
100
105
loggedCommand ( "pnpm typecheck" ) ;
101
106
loggedCommand ( "pnpm test" ) ;
102
107
loggedCommand ( "pnpm rimraf dist" ) ;
103
- loggedCommand ( "pnpm rollup -c rollup.config.js " ) ;
108
+ loggedCommand ( "pnpm rollup -c rollup.config.mjs " ) ;
104
109
loggedCommand ( "pnpm tsc -p tsconfig.typedefs.json" ) ;
105
110
loggedCommand ( `pnpm standard-version${ type } ${ prerelease } ` ) ;
106
111
You can’t perform that action at this time.
0 commit comments