From 8767eab2bb12cde1268280097629fee8b4ee284e Mon Sep 17 00:00:00 2001 From: Steve Lacy Date: Mon, 30 Aug 2021 13:44:42 -0700 Subject: [PATCH] fix: build --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b350c5d..0b09d0b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v2 - name: Build project # This would actually build your project, using zip for an example artifact run: | - GOOS=linux GOARCH=amd64 go build -ldflags="-X main.Version=${github.ref}" -o monokube main.go + GOOS=linux GOARCH=amd64 go build -ldflags="-X main.Version=${{github.ref}}" -o monokube main.go tar -czvf monokube-linux-amd64.tar.gz monokube - name: Create Release id: create_release