feat: input key
This commit is contained in:
parent
47fda44ed4
commit
d38b9546cc
1 changed files with 6 additions and 1 deletions
|
@ -13,6 +13,10 @@ inputs:
|
||||||
meta-tags:
|
meta-tags:
|
||||||
description: "The meta-tags inputs, required if inputs.tag is not provided"
|
description: "The meta-tags inputs, required if inputs.tag is not provided"
|
||||||
required: false
|
required: false
|
||||||
|
key:
|
||||||
|
description: "The value key to upgrade"
|
||||||
|
required: false
|
||||||
|
default: "image.tag"
|
||||||
commit:
|
commit:
|
||||||
description: "Enable commit"
|
description: "Enable commit"
|
||||||
required: false
|
required: false
|
||||||
|
@ -29,6 +33,7 @@ runs:
|
||||||
CD_ENV: ${{ inputs.env }}
|
CD_ENV: ${{ inputs.env }}
|
||||||
CD_COMMIT: ${{ inputs.commit || 'false' }}
|
CD_COMMIT: ${{ inputs.commit || 'false' }}
|
||||||
CD_PUSH: ${{ inputs.push || 'false' }}
|
CD_PUSH: ${{ inputs.push || 'false' }}
|
||||||
|
CD_KEY: ${{ inputs.key }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
TAG=${{ inputs.tag }}
|
TAG=${{ inputs.tag }}
|
||||||
|
@ -40,7 +45,7 @@ runs:
|
||||||
|
|
||||||
echo "Using tag: $TAG"
|
echo "Using tag: $TAG"
|
||||||
values_file="apps/$CD_APP/envs/$CD_ENV.yaml"
|
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.name "forgejo-actions"
|
||||||
git config user.email "bot@devthefuture.org"
|
git config user.email "bot@devthefuture.org"
|
||||||
git add "$values_file"
|
git add "$values_file"
|
||||||
|
|
Loading…
Add table
Reference in a new issue