From f0349e9fa565c963150d4fa41f2cfed13a09b75a Mon Sep 17 00:00:00 2001 From: Ryan McGuire Date: Mon, 28 Jul 2025 17:06:26 -0400 Subject: [PATCH] split build jobs --- .gitea/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index db708c8..6c7f5de 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,7 +20,7 @@ env: CHART_DIR: helm/ jobs: - release: + go-binaries: runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/v') # Only run on tag push steps: @@ -67,6 +67,10 @@ jobs: exit 1 fi + container-images: + runs-on: ubuntu-latest + if: startsWith(github.ref, 'refs/tags/v') # Only run on tag push + steps: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3