From 5545f6303a5cc76a0b1753838702cb5d80d6d04c Mon Sep 17 00:00:00 2001 From: "Abdurakhman R." Date: Tue, 29 Oct 2024 19:07:37 +0500 Subject: [PATCH] [FIX] formatting escape; --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b94cea7..a0482f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,11 +82,11 @@ jobs: - name: Build Linux binary run: | - GOOS=linux GOARCH=amd64 go build -ldflags "-X main.Version=${{ env.VERSION }}" -o yed + GOOS=linux GOARCH=amd64 go build -ldflags "-X 'main.Version=${{ env.VERSION }}'" -o yed - name: Build Windows binary run: | - GOOS=windows GOARCH=amd64 go build -ldflags "-X main.Version=${{ env.VERSION }}" -o yed.exe + GOOS=windows GOARCH=amd64 go build -ldflags "-X 'main.Version=${{ env.VERSION }}'" -o yed.exe - name: Upload binaries to GitHub Release uses: softprops/action-gh-release@v2