switched to push by skopeo for OCI

This commit is contained in:
gunnar
2026-06-06 18:38:13 +02:00
parent 68c3b5f7a3
commit 23b49e5515
+5 -2
View File
@@ -106,9 +106,12 @@ jobs:
- name: Push Image via Skopeo (Convert to OCI)
if: github.event_name != 'pull_request'
env:
# Wir parken die mehrzeiligen Tags sicher in einer Umgebungsvariable
GENERATED_TAGS: ${{ steps.metadata.outputs.tags }}
run: |
# Loop über alle von metadata-action generierten Tags
for tag in ${{ steps.metadata.outputs.tags }}; do
# Bash splittet $GENERATED_TAGS jetzt sauber Zeile für Zeile auf
for tag in $GENERATED_TAGS; do
echo "Pushing and converting $tag to clean OCI format..."
skopeo copy \
--format oci \