File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -386,11 +386,13 @@ jobs:
386
386
echo "Rancher Manager Image: ${{ steps.component.outputs.rm_version }}" >> ${GITHUB_STEP_SUMMARY}
387
387
echo "Rancher Manager Version: ${{ inputs.rancher_version }}" >> ${GITHUB_STEP_SUMMARY}
388
388
echo "CertManager Image: ${{ steps.component.outputs.cert_manager_version }}" >> ${GITHUB_STEP_SUMMARY}
389
- echo "CAPI UI Extension Version: ${{ inputs.capi_ui_version }}" >> ${GITHUB_STEP_SUMMARY}
389
+ UI_VERSION=$(helm list -n cattle-ui-plugin-system -o json 2> /dev/null | jq -r '.[] | .chart')
390
+ TURTLES_VERSION=$(helm list -n rancher-turtles-system -o json 2> /dev/null | jq -r '.[] | .chart')
391
+ echo "CAPI UI Extension Version: $UI_VERSION" >> ${GITHUB_STEP_SUMMARY}
392
+ echo "Rancher Turtles Operator Version: $TURTLES_VERSION" >> ${GITHUB_STEP_SUMMARY}
390
393
if ${{ inputs.ui_account != '' }}; then
391
394
echo "UI User: ${{ inputs.ui_account }}" >> ${GITHUB_STEP_SUMMARY}
392
395
fi
393
- echo "Rancher Turtles Operator Version: ${{ inputs.turtles_operator_version }}" >> ${GITHUB_STEP_SUMMARY}
394
396
echo "### Kubernetes" >> ${GITHUB_STEP_SUMMARY}
395
397
echo "K3s on Rancher Manager: ${{ env.INSTALL_K3S_VERSION }}" >> ${GITHUB_STEP_SUMMARY}
396
398
You can’t perform that action at this time.
0 commit comments