From e0d34fe7d10114448f3c50acad26acb19c093311 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sun, 23 Mar 2025 14:52:35 -0700 Subject: [PATCH] Add release tag ci --- .gitea/workflows/release-tag.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitea/workflows/release-tag.yml diff --git a/.gitea/workflows/release-tag.yml b/.gitea/workflows/release-tag.yml new file mode 100644 index 0000000..8526774 --- /dev/null +++ b/.gitea/workflows/release-tag.yml @@ -0,0 +1,31 @@ +name: release + +on: + push: + tags: + - '*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: setup go + uses: actions/setup-go@v5 + with: + go-version-file: 'go.mod' + - name: release-build + run: go build -ldflags="-s -w -X 'main.Version=${{ gitea.ref_name }}'" -o bin/mcp-gitea-${{ gitea.ref_name }}-linux-amd64 + - name: release-build-windows + run: GOOS=windows GOARCH=amd64 go build -ldflags="-s -w -X 'main.Version=${{ gitea.ref_name }}'" -o bin/mcp-gitea-${{ gitea.ref_name }}-windows-amd64.exe + - name: release-build-darwin + run: GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w -X 'main.Version=${{ gitea.ref_name }}'" -o bin/mcp-gitea-${{ gitea.ref_name }}-darwin-amd64 + - name: Use Go Action + id: use-go-action + uses: https://gitea.com/actions/gitea-release-action@main + with: + files: |- + bin/** + token: '${{secrets.RELEASE_TOKEN}}'