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:
required: true
type: string
tag:
required: false
type: string
meta-tags:
required: false
type: string
secrets:
M8A_ORG_BOT_REPO_TOKEN:
required: true
@ -34,4 +40,6 @@ jobs:
uses: https://git.devthefuture.org/devthefuture/actions/uptag@main
with:
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:
description: "The env directory name"
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:
using: "composite"
@ -17,9 +23,13 @@ runs:
CD_ENV: ${{ inputs.env }}
shell: bash
run: |
IFS=',' read -ra TAGS_ARRAY <<< "${{ steps.meta.outputs.tags }}"
IMAGE=${TAGS_ARRAY[0]}
TAG=${IMAGE##*:}
TAG=${{ inputs.tag }}
if [ -z "$TAG" ]; then
IFS=',' read -ra TAGS_ARRAY <<< "${{ inputs.meta-tags }}"
IMAGE=${TAGS_ARRAY[0]}
TAG=${IMAGE##*:}
fi
echo "Using tag: $TAG"
yq e '.image.tag = "'$TAG'"' -i apps/$CD_APP/envs/$CD_ENV/values.yaml
git config user.name "forgejo-actions"