Skip to content

Commit 5d50a15

Browse files
committed
just need to have them named different
1 parent 045c26b commit 5d50a15

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ workflows:
1212
requires:
1313
- pack-workflows
1414

15+
parameters:
16+
publish-binary-branch:
17+
type: string
18+
default: main
19+
1520
commands:
1621
persist:
1722
steps:
@@ -152,4 +157,5 @@ jobs:
152157
exit 1
153158
fi
154159
- continuation/continue:
155-
configuration_path: .circleci/packed/pipeline.yml
160+
configuration_path: .circleci/packed/pipeline.yml
161+
parameters: '{ "target-publish-binary-branch": "<< pipeline.parameters.publish-binary-branch >>" }'

.circleci/src/pipeline/@pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ubuntu-2004-current: &ubuntu-2004-current ubuntu-2004:2024.11.1
1717
ubuntu-2004-older: &ubuntu-2004-older ubuntu-2004:2024.05.1
1818

1919
parameters:
20-
publish-binary-branch:
20+
target-publish-binary-branch:
2121
type: string
2222
default: main
2323

@@ -2467,7 +2467,7 @@ jobs:
24672467
- check-if-binary-exists
24682468
- setup_should_persist_artifacts
24692469
- trigger-publish-binary-pipeline:
2470-
target-repo-branch: << pipeline.parameters.publish-binary-branch >>
2470+
target-repo-branch: << pipeline.parameters.target-publish-binary-branch >>
24712471

24722472
get-published-artifacts:
24732473
<<: *defaults

0 commit comments

Comments
 (0)