From 28550be71e4ffd4c0e030c0ef52d7935d8f4f38d Mon Sep 17 00:00:00 2001 From: Nguyen Marc Date: Fri, 1 Dec 2023 22:39:17 +0100 Subject: [PATCH] fix(ci): fix get version --- .github/workflows/golang.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/golang.yml b/.github/workflows/golang.yml index a7d1f33..adf02f7 100644 --- a/.github/workflows/golang.yml +++ b/.github/workflows/golang.yml @@ -163,6 +163,6 @@ jobs: - name: Create release and upload binaries if: startsWith(github.ref, 'refs/tags/') - run: gh release create ${{ steps.branch_name.outputs.VERSION }} -t ${{ steps.branch_name.outputs.VERSION }} -F bin/checksums.md --prerelease=${{ contains(steps.get_version.outputs.VERSION, '-') }} bin/dpsproxy-* bin/checksums.txt + run: gh release create ${{ steps.get_version.outputs.VERSION }} -t ${{ steps.get_version.outputs.VERSION }} -F bin/checksums.md --prerelease=${{ contains(steps.get_version.outputs.VERSION, '-') }} bin/dpsproxy-* bin/checksums.txt env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}