Add artifact upload step and update build command in CI workflow
Build and Test / verify (push) Successful in 9m55s

This commit is contained in:
2026-07-12 09:10:33 +02:00
parent d9ea716c16
commit a8d44b320b
+10 -1
View File
@@ -37,4 +37,13 @@ jobs:
run: go test ./... -v run: go test ./... -v
- name: Go Build - name: Go Build
run: go build ./cmd/authproxy run: |
mkdir -p dist
go build -o dist/authproxy ./cmd/authproxy
- name: Paket als Artefakt hochladen
uses: actions/upload-artifact@v3
with:
name: gitea-mcp-auth-proxy-linux-amd64
path: dist/authproxy
retention-days: 7