From 3fd0398a78d74064635b101123a480fb39622a50 Mon Sep 17 00:00:00 2001 From: Yi-Ting Shih Date: Thu, 10 Jul 2025 15:22:21 +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 }}