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

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