-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve release process & other fixes (#68)
* add script for generating release binaries * update installation instructions * increase plugin version to 1.1.2 in metadata * remove vendor dir in favor of go modules * update .gitignore * update script to compile for arm64 * update README
- Loading branch information
Showing
2,626 changed files
with
24 additions
and
630,275 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
cf-db-connect* | ||
cf-service-connect* | ||
.DS_Store |
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
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
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,10 @@ | ||
#!/bin/bash | ||
|
||
PLUGIN_NAME="cf-service-connect" | ||
|
||
GOOS=darwin GOARCH=amd64 go build -o ${PLUGIN_NAME}_darwin_amd64 | ||
GOOS=darwin GOARCH=arm64 go build -o ${PLUGIN_NAME}_darwin_arm64 | ||
GOOS=linux GOARCH=amd64 go build -o ${PLUGIN_NAME}_linux_amd64 | ||
GOOS=linux GOARCH=386 go build -o ${PLUGIN_NAME}_linux_386 | ||
GOOS=windows GOARCH=amd64 go build -o ${PLUGIN_NAME}_windows_amd64 | ||
GOOS=windows GOARCH=386 go build -o ${PLUGIN_NAME}_windows_386 |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
114 changes: 0 additions & 114 deletions
114
vendor/code.cloudfoundry.org/cli/.github/CONTRIBUTING.md
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
vendor/code.cloudfoundry.org/cli/.github/ISSUE_TEMPLATE.md
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.