We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef6248 commit ba7f136Copy full SHA for ba7f136
1 file changed
.github/workflows/helm.yml
@@ -206,7 +206,7 @@ jobs:
206
207
REVISION=${{ inputs.revision }}
208
REV_STATUS=$(helm history ${{ inputs.release-name }} -n ${{ inputs.namespace }} | awk -v rev="$REVISION" '$1 == rev {print $4}')
209
-
+
210
if [ -z "$REV_STATUS" ]; then
211
echo "❌ Revision $REVISION does not exist."
212
exit 1
@@ -216,7 +216,7 @@ jobs:
216
echo "⚠️ Revision $REVISION exists but has status '$REV_STATUS'. Cannot roll back to it."
217
218
fi
219
220
helm rollback ${{ inputs.release-name }} -n ${{ inputs.namespace }} $REVISION --debug
221
222
0 commit comments