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}}'