feat: input key

This commit is contained in:
devthejo 2023-12-03 13:47:23 +01:00
parent 47fda44ed4
commit d38b9546cc
Signed by: devthejo
GPG key ID: C04215C627711F5C

View file

@ -13,6 +13,10 @@ inputs:
meta-tags:
description: "The meta-tags inputs, required if inputs.tag is not provided"
required: false
key:
description: "The value key to upgrade"
required: false
default: "image.tag"
commit:
description: "Enable commit"
required: false
@ -29,6 +33,7 @@ runs:
CD_ENV: ${{ inputs.env }}
CD_COMMIT: ${{ inputs.commit || 'false' }}
CD_PUSH: ${{ inputs.push || 'false' }}
CD_KEY: ${{ inputs.key }}
shell: bash
run: |
TAG=${{ inputs.tag }}
@ -40,7 +45,7 @@ runs:
echo "Using tag: $TAG"
values_file="apps/$CD_APP/envs/$CD_ENV.yaml"
yq e '.image.tag = "'$TAG'"' -i "$values_file"
yq e ".$CD_KEY = \"$TAG\"" -i "$values_file"
git config user.name "forgejo-actions"
git config user.email "bot@devthefuture.org"
git add "$values_file"