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: