Workflow: теги registry в нижнем регистре (docker требует lowercase)

This commit is contained in:
2026-08-25 22:06:36 +07:00
parent bedd2e0fef
commit ee952df2a5

View File

@@ -43,13 +43,15 @@ jobs:
with:
context: .
push: true
# Путь в registry обязателен в нижнем регистре
# (github.repository = Coder/photo-editor не подойдёт)
tags: |
git.byte-mate.ru/${{ github.repository }}:latest
git.byte-mate.ru/${{ github.repository }}:${{ github.ref_name }}
git.byte-mate.ru/coder/photo-editor:latest
git.byte-mate.ru/coder/photo-editor:${{ github.ref_name }}
labels: |
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
- name: Summary
run: |
echo "## Образ собран и опубликован" >> $GITHUB_STEP_SUMMARY
echo "Теги: \`git.byte-mate.ru/${{ github.repository }}:latest\`" >> $GITHUB_STEP_SUMMARY
echo "Теги: \`git.byte-mate.ru/coder/photo-editor:latest\`" >> $GITHUB_STEP_SUMMARY