Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Don Johnson committed May 13, 2024
1 parent 72499fc commit a3df964
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a3df964

Please sign in to comment.