File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ There is a script that automates the process of creating new NPM packages and Do
46
46
4 . ` pnpm run publish:airnode-feed && pnpm run publish:signed-api ` - To publish Airnode feed and Signed API package to
47
47
NPM.
48
48
5 . ` git push --follow-tags ` - Push the tagged version commit upstream.
49
- 6 . ` pnpm run create-release:docker ` - To build the Docker images and tag them correctly. The script uses the current
49
+ 6 . Do a GitHub release for the specific tag.
50
+ 7 . ` pnpm run create-release:docker ` - To build the Docker images and tag them correctly. The script uses the current
50
51
package.json version so it expects the NPM release is done first.
51
- 7 . The command outputs the publish instructions to push the images.
52
+ 8 . The command outputs the publish instructions to push the images.
Original file line number Diff line number Diff line change @@ -111,10 +111,10 @@ const main = () => {
111
111
112
112
console . info ( 'Creating new commit...' ) ;
113
113
execSyncWithErrorHandling ( 'git add .' ) ;
114
- execSyncWithErrorHandling ( `git commit -m "${ newVersion } "` ) ;
114
+ execSyncWithErrorHandling ( `git commit -m "v ${ newVersion } "` ) ;
115
115
116
116
console . info ( 'Creating new annotated git tag...' ) ;
117
- execSyncWithErrorHandling ( `git tag -a ${ newVersion } -m "${ newVersion } "` ) ;
117
+ execSyncWithErrorHandling ( `git tag -a v ${ newVersion } -m "v ${ newVersion } "` ) ;
118
118
119
119
console . info ( '' ) ;
120
120
console . info ( 'The airnode-feed and signed-api packages have been bumped to the new version.' ) ;
You can’t perform that action at this time.
0 commit comments