TAG
Some checks failed
ci / build (push) Failing after 47s

This commit is contained in:
miwr 2025-04-24 13:30:05 +02:00
parent d933c6085e
commit 4a17dda647

View file

@ -51,6 +51,7 @@ jobs:
run: |
chmod +x update-version.sh
./update-version.sh
TAG=$(awk '/<version>/ {count++; if(count == 2) print $0}' pom.xml | sed -n 's|.*<version>\([^<]*\)</version>.*|\1|p')
- name: Build and push
uses: docker/build-push-action@v6
with:
@ -58,4 +59,4 @@ jobs:
allow: network.host
network: host
platforms: linux/arm64
tags: $(awk '/<version>/ {count++; if(count == 2) print $0}' pom.xml | sed -n 's|.*<version>\([^<]*\)</version>.*|\1|p')
tags: ${TAG}