Separate tags by comma
Some checks failed
build-ublue-custom / Build and push image (push) Failing after 4m51s

This commit is contained in:
Florian RICHER 2024-10-11 22:33:35 +02:00
parent fc2a952c75
commit c15c46ae09

View file

@ -81,7 +81,8 @@ jobs:
echo "${TAG}" echo "${TAG}"
done done
echo "alias_tags=${alias_tags[*]}" >> $GITEA_OUTPUT alias_tags_string=$(IFS=, ; echo "${alias_tags[*]}")
echo "alias_tags=${alias_tags_string}" >> $GITEA_OUTPUT
# Build metadata # Build metadata
- name: Image Metadata - name: Image Metadata
@ -96,7 +97,7 @@ jobs:
org.opencontainers.image.description=${{ env.MY_IMAGE_DESC }} org.opencontainers.image.description=${{ env.MY_IMAGE_DESC }}
org.opencontainers.image.title=${{ env.MY_IMAGE_NAME }} org.opencontainers.image.title=${{ env.MY_IMAGE_NAME }}
- name: Login to GitHub Container Registry - name: Login to Container Registry
uses: https://github.com/docker/login-action@v3 uses: https://github.com/docker/login-action@v3
with: with:
registry: gitea.mrdev023.fr registry: gitea.mrdev023.fr