fix: migrate DC_VERSION to Dockerfile

This commit is contained in:
2025-12-05 16:31:46 +01:00
parent 5e16976d26
commit 9ea01a091b
3 changed files with 4 additions and 10 deletions

View File

@@ -26,8 +26,8 @@ jobs:
run: |
echo "changed=false" >> $GITHUB_OUTPUT
for file in Makefile; do
if git diff HEAD~1 HEAD -- "${file}" | grep --quiet '^[+-]DC_VERSION'; then
for file in Dockerfile; do
if git diff HEAD~1 HEAD -- "${file}" | grep --quiet '^[+-]ARG DC_VERSION'; then
echo "DC_VERSION line changed."
echo "changed=true" >> $GITHUB_OUTPUT
break