2 Commits

Author SHA1 Message Date
37468b6785 added version tag output
All checks were successful
Gitea CI/CD / Set Tag Name (push) Successful in 5s
Gitea CI/CD / build-and-test (push) Successful in 45s
Gitea CI/CD / docker-build-and-push (push) Successful in 5m57s
Gitea CI/CD / Create Tag (push) Successful in 5s
2025-10-04 01:51:56 +02:00
471767c4ed added farther checking for existing tags 2025-10-04 01:43:57 +02:00

View File

@@ -50,6 +50,8 @@ jobs:
tag_name: ${{ steps.set_tag.outputs.tag_name }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Determine next semantic version tag
id: set_tag
@@ -79,6 +81,7 @@ jobs:
fi
new_tag="v${major}.${minor}.${patch}"
echo "Creating new version tag: ${new_tag}"
echo "tag_name=${new_tag}" >> $GITHUB_OUTPUT
docker-build-and-push: