Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Charith Amarasinghe committed Oct 22, 2020
1 parent d39a21d commit 7f216e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
go get -v -t -d ./...
- name: Build Linux amd64
run: mkdir -p builds/ && GOOS=linux GOARCH=amd64 go build -v . -o builds/x509-cert-expiry-pager-linux-amd64
run: mkdir -p builds/ && GOOS=linux GOARCH=amd64 go build -v -o builds/x509-cert-expiry-pager-linux-amd64 .

- name: Build Linux arm64
run: mkdir -p builds/ && GOOS=linux GOARCH=arm64 go build -v . -o builds/x509-cert-expiry-pager-linux-arm64
run: mkdir -p builds/ && GOOS=linux GOARCH=arm64 go build -v -o builds/x509-cert-expiry-pager-linux-arm64 .

- name: Build Darwin amd64
run: mkdir -p builds/ && GOOS=darwin GOARCH=amd64 go build -v . -o builds/x509-cert-expiry-pager-darwin-amd64
run: mkdir -p builds/ && GOOS=darwin GOARCH=amd64 go build -v -o builds/x509-cert-expiry-pager-darwin-amd64 .

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 7f216e5

Please sign in to comment.