From 088ddb5b9b60a9644c098eb293004b64f88db987 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 10 Apr 2025 22:39:51 -0400 Subject: [PATCH] add gitea action for building app container --- .gitea/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..dc25082 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,13 @@ +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