Update Go modules and actions setup #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build and Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
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: | |
files: | | |
jsonviz-windows-amd64.exe | |
jsonviz-linux-amd64 | |
jsonviz-darwin-amd64 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |