From 9e8abbd4cef647d8033cd4f9ad2166f0c3e50860 Mon Sep 17 00:00:00 2001 From: ulflow_phattt2901 Date: Mon, 26 May 2025 11:12:06 +0700 Subject: [PATCH] ci: add Gitea CI pipeline with lint, security scan, test and build jobs --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9d8d807..1f14f1b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -99,12 +99,12 @@ jobs: - name: Build run: | APP_VERSION="dev-${{ gitea.sha }}" - go build -v -ldflags="-s -w -X main.version=${APP_VERSION}" -o ./bin/api ./cmd/api + go build -v -ldflags="-s -w -X main.version=${APP_VERSION}" -o ./bin/app ./cmd/app - name: Upload build artifact uses: actions/upload-artifact@v3 with: - name: api-binary + name: app-binary path: ./bin/api - name: Notify on success