From 0a1543fb3fae340bb5c334e991b58a8184f3d2c6 Mon Sep 17 00:00:00 2001 From: Tracewebstudio Dev Date: Sun, 19 Apr 2026 00:02:49 +0200 Subject: [PATCH] ci: add Gitea Actions workflow --- .gitea/workflows/build.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..a458220 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,27 @@ +name: build-and-push + +on: + push: + branches: + - main + - high-performance + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build and push with Kaniko + uses: aicoe-aioc/kaniko-action@v1 + with: + registry: ${{ secrets.REGISTRY_HOSTPORT }} + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }} + repo: nxtgauge-frontend-solid + tags: | + ${{ github.sha }} + ${{ github.ref_name }}-latest + dockerfile: Dockerfile + context: .