Files
map/.gitea/workflows/build.yml
Matt 088ddb5b9b
Some checks failed
Build Docker containers / Build (push) Failing after 2m19s
add gitea action for building app container
2025-04-10 22:39:51 -04:00

14 lines
345 B
YAML

name: Build Docker containers
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build docker image
run: docker build -t git.arinity.org/ctmesh/map:latest .
- name: Push image
run: docker push git.arinity.org/ctmesh/map:latest