Files
land-vue/.gitea/workflows/deploy.yml
snusxd c5bd2dcb61
Some checks failed
land deploy / docker-build (push) Failing after 18s
ci/cd: test deploy 4
2026-04-13 13:21:06 +03:00

19 lines
610 B
YAML

name: land deploy
run-name: ${{ gitea.actor }} test ci/cd
on: [push]
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- name: check repository
uses: actions/checkout@v4
- name: docker build backend
run: |
docker build -f ${{ gitea.workspace }}/backend/Dockerfile -t mva-backend:latest ${{ gitea.workspace }}/backend
- name: docker build frontend
run: |
docker build -f ${{ gitea.workspace }}/frontend/Dockerfile -t mva-frontend:latest ${{ gitea.workspace }}/frontend
- name: docker compose
run: docker compose up -d build