action run master-106

This commit is contained in:
action-runner
2025-10-31 00:42:59 +00:00
parent 75e191270c
commit 0cf9441fd9

View File

@@ -17,6 +17,10 @@ inputs:
required: false
default: "europe-docker.pkg.dev/puzzle-and-play/docker"
tag_commit:
required: false
default: true
runs:
using: composite
steps:
@@ -27,6 +31,7 @@ runs:
IMAGE_LOCAL_TAG: "${{ inputs.image_local_tag }}"
IMAGE_REMOTE_NAME: "${{ inputs.repository_location }}/${{ inputs.image_name }}"
IMAGE_REMOTE_TAG: "${{ inputs.image_remote_tag }}"
TAG_COMMIT: "${{ inputs.tag_commit }}"
run: |
: ${IMAGE_REMOTE_TAG:="${{ github.ref_name }}-${{ github.run_number }}"}
@@ -37,3 +42,10 @@ runs:
"$IMAGE_REMOTE_NAME:$IMAGE_REMOTE_TAG"
docker push "$IMAGE_REMOTE_NAME:$IMAGE_REMOTE_TAG"
if [[ "$TAG_COMMIT" == "true" ]]; then
TAG_NAME="image-$IMAGE_REMOTE_TAG"
echo "tagging commit with $TAG_NAME"
git tag "$TAG_NAME"
git push origin $TAG_NAME
fi