-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55f8597
commit a288be1
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
# | ||
# release.sh - Generate all artifacts for a release | ||
# | ||
|
||
# wfcli | ||
echo "Building wfcli..." | ||
GOOS=darwin GOARCH=386 CGO_ENABLED=0 go build -o wfcli-osx github.com/fission/fission-workflows/cmd/wfcli/ | ||
GOOS=windows GOARCH=386 CGO_ENABLED=0 go build -o wfcli-windows.exe github.com/fission/fission-workflows/cmd/wfcli/ | ||
GOOS=linux GOARCH=386 CGO_ENABLED=0 go build -o wfcli-linux github.com/fission/fission-workflows/cmd/wfcli/ | ||
|
||
# Deployments | ||
echo "Packaging chart..." | ||
helm package ${GOPATH}/src/github.com/fission/fission-workflows/charts/fission-workflows | ||
|
||
echo "Done!" |