Skip to content

Instantly share code, notes, and snippets.

@ipfans
Last active March 11, 2021 06:16
Show Gist options
  • Save ipfans/39e70591a58efb3cea087e3670b7eba0 to your computer and use it in GitHub Desktop.
Save ipfans/39e70591a58efb3cea087e3670b7eba0 to your computer and use it in GitHub Desktop.
Build NATS-Server
# https://taskfile.dev
version: '3'
tasks:
default:
cmds:
- go build -o nats-server -trimpath -ldflags="-s -w -buildid=" .
env:
GOOS: linux
GOARCH: amd64
deploy:
cmds:
- task: default
- scp nats-server www:~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment