fix
All checks were successful
Auto release / tag_on_change (push) Successful in 5s
Build / build-amd64 (push) Successful in 34s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 1m18s

This commit is contained in:
2025-12-05 17:36:02 +01:00
parent 9ea01a091b
commit 53799926cc

View File

@@ -4,7 +4,7 @@ on:
push: push:
branches: [ "master" ] branches: [ "master" ]
paths: paths:
- Makefile - Dockerfile
env: env:
GIT_EMAIL: noreply@cryptic.systems GIT_EMAIL: noreply@cryptic.systems
@@ -42,7 +42,7 @@ jobs:
id: create_tag id: create_tag
if: steps.check_change.outputs.changed == 'true' if: steps.check_change.outputs.changed == 'true'
run: | run: |
defined_tag="$(grep --only-matching --perl-regexp 'DC_VERSION\?=v?[\d]*(\.[\d]*){0,2}' Makefile | cut --delimiter='=' --fields=2)" defined_tag="$(grep --only-matching --perl-regexp 'ARG DC_VERSION=v?[\d]*(\.[\d]*){0,2}' Dockerfile | cut --delimiter='=' --fields=2)"
echo "defined_tag=${defined_tag}" >> $GITHUB_OUTPUT echo "defined_tag=${defined_tag}" >> $GITHUB_OUTPUT
echo "New tag: ${defined_tag}" echo "New tag: ${defined_tag}"