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