From 62b49cf36c650290b8940c1bcce2c138c4bf1774 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Sun, 6 Oct 2024 11:22:33 +0200 Subject: [PATCH] mod(action): use different gitea-release-action --- .gitea/workflows/release.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index f0ab98d..f1a26f0 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -14,6 +14,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Go installation uses: actions/setup-go@v5 with: @@ -23,7 +25,6 @@ jobs: - name: Build run: go build -ldflags "-s -w" -o ./bin/serve main.go - name: Release build artifacts - uses: https://gitea.com/actions/release-action@main + uses: akkuman/gitea-release-action@v1.3.2 with: files: ./bin/serve - api_key: '${{secrets.RELEASE_TOKEN}}'