chore: wip
This commit is contained in:
parent
b1c4d12cf1
commit
88cc232a24
2 changed files with 22 additions and 4 deletions
|
@ -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 }}
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue