|
64 | 64 | echo "type=cli" >> $GITHUB_OUTPUT
|
65 | 65 | echo "version=${TEST_TAG#cli-v}" >> $GITHUB_OUTPUT
|
66 | 66 | elif [[ $TEST_TAG == peng-v* ]]; then
|
67 |
| - echo "type=controlplane" >> $GITHUB_OUTPUT |
| 67 | + echo "type=planengine" >> $GITHUB_OUTPUT |
68 | 68 | echo "version=${TEST_TAG#peng-v}" >> $GITHUB_OUTPUT
|
69 | 69 | elif [[ $TEST_TAG == sdk-v* ]]; then
|
70 | 70 | echo "type=sdk" >> $GITHUB_OUTPUT
|
|
80 | 80 | echo "type=cli" >> $GITHUB_OUTPUT
|
81 | 81 | echo "version=${TAG#cli-v}" >> $GITHUB_OUTPUT
|
82 | 82 | elif [[ $TAG == peng-v* ]]; then
|
83 |
| - echo "type=controlplane" >> $GITHUB_OUTPUT |
| 83 | + echo "type=planengine" >> $GITHUB_OUTPUT |
84 | 84 | echo "version=${TAG#peng-v}" >> $GITHUB_OUTPUT
|
85 | 85 | elif [[ $TAG == sdk-v* ]]; then
|
86 | 86 | echo "type=sdk" >> $GITHUB_OUTPUT
|
@@ -279,7 +279,7 @@ jobs:
|
279 | 279 | if [ "$RELEASE_TYPE" = "full" ]; then
|
280 | 280 | # Only add notes if the component has changes
|
281 | 281 | [ "${{ needs.prepare-release.outputs.has_cli }}" = "true" ] && add_component_notes "cli" "$VERSION" || echo "Skipping CLI notes"
|
282 |
| - [ "${{ needs.prepare-release.outputs.has_planengine }}" = "true" ] && add_component_notes "controlplane" "$VERSION" || echo "Skipping Plan Engine notes" # Fixed from control-plane to controlplane |
| 282 | + [ "${{ needs.prepare-release.outputs.has_planengine }}" = "true" ] && add_component_notes "planengine" "$VERSION" || echo "Skipping Plan Engine notes" |
283 | 283 | [ "${{ needs.prepare-release.outputs.has_sdk }}" = "true" ] && add_component_notes "sdks" "$VERSION" || echo "Skipping SDK notes"
|
284 | 284 | else
|
285 | 285 | add_component_notes "$RELEASE_TYPE" "$VERSION"
|
|
0 commit comments