Skip to content
This repository has been archived by the owner on Jan 17, 2021. It is now read-only.

Commit

Permalink
Add release build script
Browse files Browse the repository at this point in the history
  • Loading branch information
ammario committed Apr 20, 2019
1 parent f252ccc commit 3ce3a26
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
vendor
vendor
bin
9 changes: 9 additions & 0 deletions ci/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash
export GOARCH=amd64

build(){
go build -o bin/sshcode-$GOOS-$GOARCH
}

GOOS=darwin build
GOOS=linux build

0 comments on commit 3ce3a26

Please sign in to comment.