File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
.github/actions/build-node-python Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,11 @@ inputs:
3535 upload_yarn_lock :
3636 description : " uploads the node-yarn-lock artifact"
3737 required : false
38- default : true
38+ default : false # false as it is broken right now when actions run in parallel: the artifact name must be unique (so we have to pass the branch or so)
39+ upload_bundle :
40+ description : " uploads the bundle artifact"
41+ required : false
42+ default : false # false as it is broken right now when actions run in parallel: the artifact name must be unique (so we have to pass the branch or so)
3943 run_node_lint :
4044 default : true
4145 required : false
@@ -246,7 +250,7 @@ runs:
246250 name : node-yarn-lock
247251 path : ./yarn.lock
248252 - uses : actions/upload-artifact@v4
249- if : inputs.enable_node == 'true' && inputs.run_node_bundle == 'true'
253+ if : inputs.enable_node == 'true' && inputs.run_node_bundle == 'true' && inputs.upload_bundle == 'true'
250254 with :
251255 name : node-bundle
252256 path : ./bundles
You can’t perform that action at this time.
0 commit comments