From a51f94e8483920bc299dca0d064b5d00b44211ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20K=C3=A4nner?= Date: Thu, 16 Jan 2025 18:07:56 +0100 Subject: [PATCH] add simple ci --- .gitea/gitea-ci.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/gitea-ci.yaml diff --git a/.gitea/gitea-ci.yaml b/.gitea/gitea-ci.yaml new file mode 100644 index 0000000..6f97eaf --- /dev/null +++ b/.gitea/gitea-ci.yaml @@ -0,0 +1,17 @@ +name: Build +run-name: ${{ gitea.actor }} is runs ci pipeline +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: https://github.com/actions/checkout@v4 + - name: Set up Docker Buildx + uses: https://githubg.com/docker/setup-buildx-action@v3 + - name: Build Docker image + uses: https://github.com/docker/build-push-action@v6 + with: + context: . + file: ./Dockerfile + push: false