From cb17dd66c97d5b106bd56a2f0133658d75dc5273 Mon Sep 17 00:00:00 2001 From: "Lars M. Rogne" Date: Wed, 24 Apr 2024 20:32:02 +0200 Subject: [PATCH] Fix output name --- .github/workflows/build_release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_release.yaml b/.github/workflows/build_release.yaml index cd8556e..1cbaa2c 100644 --- a/.github/workflows/build_release.yaml +++ b/.github/workflows/build_release.yaml @@ -17,9 +17,9 @@ jobs: with: go-version: '>=1.22.1' - name: release-build-windows - run: GOOS=windows GOARCH=amd64 go build -o bin/reverse-${{ github.ref_name }}-windows-amd64.exe + run: GOOS=windows GOARCH=amd64 go build -o bin/collatz-${{ github.ref_name }}-windows-amd64.exe - name: release-build-linux - run: GOOS=linux GOARCH=amd64 go build -o bin/reverse-${{ github.ref_name }}-linux-amd64 + run: GOOS=linux GOARCH=amd64 go build -o bin/collatz-${{ github.ref_name }}-linux-amd64 - name: Release uses: https://gitea.com/actions/release-action@main with: