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 }}."