From feb0a4e5033873255b7df21adabd977c8be60105 Mon Sep 17 00:00:00 2001 From: action-runner Date: Fri, 31 Oct 2025 00:43:00 +0000 Subject: [PATCH] action run master-106 --- action.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/action.yaml b/action.yaml index 97f0309..f736328 100644 --- a/action.yaml +++ b/action.yaml @@ -25,10 +25,6 @@ inputs: required: false default: "5m" - tag_commit: - required: false - default: true - runs: using: composite steps: @@ -41,7 +37,6 @@ runs: IMAGE_PATHS: "${{ inputs.image_paths }}" IMAGE_TAG: "${{ inputs.image_tag }}" HELM_UPGRADE_TIMEOUT: "${{ inputs.timeout }}" - TAG_COMMIT: "${{ inputs.tag_commit }}" run: | : ${NAMESPACE:="$RELEASE_NAME"} @@ -77,10 +72,3 @@ runs: --reuse-values \ --set "$value_overrides" \ --timeout "$HELM_UPGRADE_TIMEOUT" - - if [[ "$TAG_COMMIT" == "true" ]]; then - TAG_NAME="image-$IMAGE_TAG" - echo "tagging commit with $TAG_NAME" - git tag "$TAG_NAME" - git push origin $TAG_NAME - fi