Merge pull request 'fix: resolve labels property issue in docker-build workflow' (#3) from Zuev into main
All checks were successful
Build and Push Docker Images / build-and-push-backend (push) Successful in 15s
Build and Push Docker Images / build-and-push-frontend (push) Successful in 11s

Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2026-03-10 22:12:01 +00:00

View File

@@ -38,10 +38,9 @@ jobs:
context: ./backend
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
labels: |
${{ steps.meta.outputs.labels }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
build-and-push-frontend:
runs-on: ubuntu-latest
steps:
@@ -67,6 +66,6 @@ jobs:
context: ./frontend
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
labels: |
${{ steps.meta.outputs.labels }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}