Skip to content

Commit

Permalink
Merge pull request #40 from antham/upgrade-go
Browse files Browse the repository at this point in the history
Upgrade go version
  • Loading branch information
antham committed Aug 23, 2020
2 parents 35c7923 + 6d547ec commit fed2a84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.14
- image: circleci/golang:1.15
working_directory: /go/src/github.com/antham/ghokin
steps:
- checkout
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
- run:
name: Compile
command: |
gox -output "build/{{.Dir}}_{{.OS}}_{{.Arch}}"
gox -osarch "linux/amd64 darwin/amd64 windows/amd64" -output "build/{{.Dir}}_{{.OS}}_{{.Arch}}"
- run:
name: Run gommit
command: |
Expand All @@ -52,7 +52,7 @@ jobs:
publish:
docker:
- image: circleci/golang:1.14
- image: circleci/golang:1.15
working_directory: /go/src/github.com/antham/ghokin
steps:
- checkout
Expand All @@ -77,7 +77,7 @@ jobs:
- run:
name: Compile
command: |
gox -output "build/{{.Dir}}_{{.OS}}_{{.Arch}}"
gox -osarch "linux/amd64 darwin/amd64 windows/amd64" -output "build/{{.Dir}}_{{.OS}}_{{.Arch}}"
- run:
run: Upload assets
command: |
Expand Down

0 comments on commit fed2a84

Please sign in to comment.