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