From fa7a8c76d2ff28030f0554416d0a7a9f225c8240 Mon Sep 17 00:00:00 2001 From: tueem Date: Fri, 18 Oct 2024 22:25:29 +0200 Subject: [PATCH] add build workflow --- .gitea/workflows/build.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..2e4ef45 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,14 @@ +name: Test build +run-name: ${{ gitea.event_name }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Build-Docker: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Build Docker Image + run: docker buildx build -t ${{ vars.DOCKER_TAG }} . \ No newline at end of file