Skip to content

Commit

Permalink
release: 1.0.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp committed Aug 29, 2018
1 parent d925a1c commit 49ec733
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
Binary file added .github_token.enc
Binary file not shown.
16 changes: 16 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
builds:
- binary: cage
main: ./cli/cage/main.go
goos:
- darwin
- linux
goarch:
- amd64
- 386
archive:
format: zip
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
release:
github:
owner: loilo-inc
name: canarycage
8 changes: 7 additions & 1 deletion Shakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ test-container:
docker build -t canarycage/test-container test-container
push-test-container: test-container
docker tag canarycage/test-container loilodev/http-server:latest
docker push loilodev/http-server:latest
docker push loilodev/http-server:latest
lake:
go get -u github.com/loilo-inc/ladylake/cli/lake
release: lake
GITHUB_TOKEN=$(lake decrypt --binary -f .github_token.enc) goreleaser --rm-dist
version:
go run cli/cage/main.go -v | cut -f 3 -d ' '
2 changes: 1 addition & 1 deletion cli/cage/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func main() {
configPath := ""
app := cli.NewApp()
app.Name = "canarycage"
app.Version = "0.0.1"
app.Version = "1.0.0-alpha"
app.Description = "A gradual roll-out deployment tool for AWS ECS"
app.Flags = []cli.Flag{
cli.StringFlag{
Expand Down

0 comments on commit 49ec733

Please sign in to comment.