From a3df9644ce6e930417037721bb883e0e13817f83 Mon Sep 17 00:00:00 2001 From: Don Johnson Date: Sun, 12 May 2024 19:27:12 -0700 Subject: [PATCH] . --- .github/workflows/release.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12c94c2..70274f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,20 +10,15 @@ jobs: name: Build and Release runs-on: ubuntu-latest steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Set up Go - uses: actions/setup-go@v2 + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 with: - go-version: '^1.21' - + go-version: '^1.20' # Make sure this matches the Go version you're using locally - name: Build binaries for all platforms run: | GOOS=windows GOARCH=amd64 go build -o jsonviz-windows-amd64.exe GOOS=linux GOARCH=amd64 go build -o jsonviz-linux-amd64 GOOS=darwin GOARCH=amd64 go build -o jsonviz-darwin-amd64 - - name: Upload releases uses: softprops/action-gh-release@v1 with: