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

18 lines
500 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 ./backend/Dockerfile -t mva-backend:latest .
- name: docker build frontend
run: |
docker build -f ./frontend/Dockerfile -t mva-frontend:latest .
- run: echo "this job's status is ${{ job.status }}."