Skip to content

Commit b0ba231

Browse files
Merge branch 'main' into vdelev_all_dependabot
2 parents d478e16 + fadd65e commit b0ba231

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/actions/build-node-python/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)