File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1445,7 +1445,7 @@ jobs:
1445
1445
echo "machine github.com login react-native-bot password $GITHUB_TOKEN" > ~/.netrc
1446
1446
# END: Stables and nightlies
1447
1447
1448
- - run : node ./scripts/publish-npm.js
1448
+ - run : node ./scripts/publish-npm.js --<< parameters.release_type >>
1449
1449
- run :
1450
1450
name : Zip Hermes Native Symbols
1451
1451
command : zip -r /tmp/hermes-native-symbols.zip ~/react-native/ReactAndroid/hermes-engine/build/intermediates/cmake/
Original file line number Diff line number Diff line change @@ -65,6 +65,11 @@ const argv = yargs
65
65
type : 'boolean' ,
66
66
default : false ,
67
67
} )
68
+ . option ( 'r' , {
69
+ alias : 'release' , // useless but needed for CI
70
+ type : 'boolean' ,
71
+ default : false ,
72
+ } )
68
73
. strict ( ) . argv ;
69
74
const nightlyBuild = argv . nightly ;
70
75
const dryRunBuild = argv . dryRun ;
You can’t perform that action at this time.
0 commit comments