chore: wip

This commit is contained in:
devthejo 2023-11-15 17:59:05 +01:00
parent b1c4d12cf1
commit 88cc232a24
Signed by: devthejo
GPG key ID: C04215C627711F5C
2 changed files with 22 additions and 4 deletions

View file

@ -9,6 +9,12 @@ on:
env: env:
required: true required: true
type: string type: string
tag:
required: false
type: string
meta-tags:
required: false
type: string
secrets: secrets:
M8A_ORG_BOT_REPO_TOKEN: M8A_ORG_BOT_REPO_TOKEN:
required: true required: true
@ -34,4 +40,6 @@ jobs:
uses: https://git.devthefuture.org/devthefuture/actions/uptag@main uses: https://git.devthefuture.org/devthefuture/actions/uptag@main
with: with:
app: ${{ inputs.app }} app: ${{ inputs.app }}
env: ${{ inputs.env }} env: ${{ inputs.env }}
tag: ${{ inputs.tag }}
meta-tags: ${{ inputs.meta-tags }}

View file

@ -7,6 +7,12 @@ inputs:
env: env:
description: "The env directory name" description: "The env directory name"
required: true required: true
tag:
description: "The tag to set, default to extracted from meta-tags inputs"
required: false
meta-tags:
description: "The meta-tags inputs, required if inputs.tag is not provided"
required: false
runs: runs:
using: "composite" using: "composite"
@ -17,9 +23,13 @@ runs:
CD_ENV: ${{ inputs.env }} CD_ENV: ${{ inputs.env }}
shell: bash shell: bash
run: | run: |
IFS=',' read -ra TAGS_ARRAY <<< "${{ steps.meta.outputs.tags }}" TAG=${{ inputs.tag }}
IMAGE=${TAGS_ARRAY[0]} if [ -z "$TAG" ]; then
TAG=${IMAGE##*:} IFS=',' read -ra TAGS_ARRAY <<< "${{ inputs.meta-tags }}"
IMAGE=${TAGS_ARRAY[0]}
TAG=${IMAGE##*:}
fi
echo "Using tag: $TAG" echo "Using tag: $TAG"
yq e '.image.tag = "'$TAG'"' -i apps/$CD_APP/envs/$CD_ENV/values.yaml yq e '.image.tag = "'$TAG'"' -i apps/$CD_APP/envs/$CD_ENV/values.yaml
git config user.name "forgejo-actions" git config user.name "forgejo-actions"