From c298deaaa2c815d2dc4689816399467d71357356 Mon Sep 17 00:00:00 2001 From: Arrelin Date: Wed, 18 Mar 2026 09:50:30 +0300 Subject: [PATCH] Add .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..9b9d00c --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,18 @@ +name: Build + on: + push: + branches: [main] + jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: docker/login-action@v3 + with: + registry: 192.168.31.100:3847 + username: ${{ gitea.actor }} + password: ${{ secrets.REGISTRY_TOKEN }} + - uses: docker/build-push-action@v5 + with: + push: true + tags: 192.168.31.100:3847/${{ gitea.repository }}:latest