From 26ee673270a7eaff6c6142b8753ec43fc132c189 Mon Sep 17 00:00:00 2001 From: Yi-Ting Shih Date: Sat, 13 Dec 2025 05:52:04 +0800 Subject: [PATCH] Feat: add build ci --- .gitea/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 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..fe74c15 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,14 @@ +--- +name: Build and release 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 }}