From 644db270c2a297be22cdaf7c668dd13841ad4a91 Mon Sep 17 00:00:00 2001 From: devthejo Date: Sun, 3 Dec 2023 12:37:08 +0100 Subject: [PATCH] fix: up convention + commit and push inputs --- uptag/action.yaml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/uptag/action.yaml b/uptag/action.yaml index e6d816b..d0872bc 100644 --- a/uptag/action.yaml +++ b/uptag/action.yaml @@ -13,6 +13,12 @@ inputs: meta-tags: description: "The meta-tags inputs, required if inputs.tag is not provided" required: false + commit: + description: "Enable commit" + required: false + push: + description: "Enable push" + required: false runs: using: "composite" @@ -21,6 +27,8 @@ runs: env: CD_APP: ${{ inputs.app || github.event.repository.name }} CD_ENV: ${{ inputs.env }} + CD_COMMIT: ${{ inputs.commit || 'false }} + CD_PUSH: ${{ inputs.push || 'false' }} shell: bash run: | TAG=${{ inputs.tag }} @@ -31,9 +39,16 @@ runs: fi echo "Using tag: $TAG" - yq e '.image.tag = "'$TAG'"' -i apps/$CD_APP/envs/$CD_ENV/values.yaml + values_files="envs/$CD_ENV/$CD_APP.yaml" + yq e '.image.tag = "'$TAG'"' -i $values_file git config user.name "forgejo-actions" git config user.email "bot@devthefuture.org" - git add . - git commit --allow-empty -m "chore: update image tag to $TAG" - git push origin HEAD \ No newline at end of file + git add $values_files + + if [ "$CD_COMMIT" != "false" ]; then + git commit --allow-empty -m "chore: set $CD_ENV/$CD_APP image.tag=$TAG" + fi + + if [ "$CD_PUSH" != "false" ]; then + git push origin HEAD + fi \ No newline at end of file