From 0ed5276957e6bfec08cbe412c36245482608dd68 Mon Sep 17 00:00:00 2001 From: Yi-Ting Shih Date: Sun, 26 Apr 2026 08:25:14 +0800 Subject: [PATCH] Feat: add build workflow --- .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..ba05a38 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,13 @@ +name: Build and push image +on: [push] + +jobs: + release-image: + runs-on: imgbuilder + steps: + - name: Build and push image + uses: https://gitea.konchin.com/action/docker@main + with: + registry-certificate: ${{ vars.ROOTCA }} + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }}