File tree 1 file changed +9
-9
lines changed 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -390,15 +390,6 @@ async function run() {
390
390
391
391
console . info ( )
392
392
393
- console . info ( `Creating github release...` )
394
- // Stringify the markdown to excape any quotes
395
- execSync (
396
- `gh release create v${ version } ${
397
- ! isMainBranch ? '--prerelease' : ''
398
- } --notes '${ changelogMd . replace ( / ' / g, '"' ) } '`,
399
- )
400
- console . info ( ` Github release created.` )
401
-
402
393
console . info ( `Committing changes...` )
403
394
execSync ( `git add -A && git commit -m "${ releaseCommitMsg ( version ) } "` )
404
395
console . info ( )
@@ -417,6 +408,15 @@ async function run() {
417
408
console . info ( )
418
409
console . info ( ` Tags pushed.` )
419
410
411
+ console . info ( `Creating github release...` )
412
+ // Stringify the markdown to excape any quotes
413
+ execSync (
414
+ `gh release create v${ version } ${
415
+ ! isMainBranch ? '--prerelease' : ''
416
+ } --notes '${ changelogMd . replace ( / ' / g, '"' ) } '`,
417
+ )
418
+ console . info ( ` Github release created.` )
419
+
420
420
console . info ( `All done!` )
421
421
}
422
422
You can’t perform that action at this time.
0 commit comments