diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4cfbb59..3de479d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ jobs: with: fetch-depth: 0 - id: version - run: echo version=$(go run . --version) > ${{ github.output }} + run: echo version=v$(go run . --version) > ${{ github.output }} - uses: raviqqe/goreleaser-action@v1 with: version: ${{ steps.version.outputs.version }} diff --git a/configuration.go b/configuration.go index 301a430..f8a809d 100644 --- a/configuration.go +++ b/configuration.go @@ -3,7 +3,7 @@ package main import "time" const ( - version = "2.10.6" + version = "2.10.7" agentName = "muffet" concurrency = 1024 tcpTimeout = 5 * time.Second