Files
land-vue/.gitea/workflows/deploy.yml
snusxd d03e5199d1
All checks were successful
land deploy / docker-build (push) Successful in 2m13s
ci/cd: я даун
2026-04-13 13:38:24 +03:00

24 lines
557 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
with:
submodules: true
- name: docker build backend
working-directory: ./backend
run: docker build -t mva-backend:latest .
- name: docker build frontend
working-directory: ./frontend
run: docker build -t mva-frontend:latest .
- name: docker compose
run: docker compose up -d --build