fix: use docker label for build job (runner has docker-cli)
Some checks failed
CI/CD Pipeline / backend-build (push) Successful in 2m53s
CI/CD Pipeline / frontend-build (push) Successful in 1m19s
CI/CD Pipeline / docker-build (push) Failing after 39s

This commit is contained in:
2026-04-01 21:25:44 -03:00
parent 86a4b7cc1d
commit fd52352b21

View File

@@ -55,7 +55,7 @@ jobs:
# Docker build job (depends on backend and frontend builds) # Docker build job (depends on backend and frontend builds)
docker-build: docker-build:
needs: [backend-build, frontend-build] needs: [backend-build, frontend-build]
runs-on: ubuntu-latest runs-on: docker
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
- name: Checkout code - name: Checkout code