Skip to content

Commit

Permalink
cicd: fix clairctl builds
Browse files Browse the repository at this point in the history
Signed-off-by: ldelossa <[email protected]>
  • Loading branch information
ldelossa authored and ldelossa committed Sep 29, 2020
1 parent 31adc6d commit 9aa8adc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
- name: Build clairctl
run:
GOOS=darwin GOARCH=amd64 -o clairctl-darwin-amd64 ./cmd/clairctl
GOOS=linux GOARCH=amd64 -o clairctl-linux-amd64 ./cmd/clairctl
GOOS=windows GOARCH=amd64 -o clairctl-windows-amd64 ./cmd/clairctl
GOOS=darwin GOARCH=amd64 go build -o clairctl-darwin-amd64 ./cmd/clairctl
GOOS=linux GOARCH=amd64 go build -o clairctl-linux-amd64 ./cmd/clairctl
GOOS=windows GOARCH=amd64 go build -o clairctl-windows-amd64 ./cmd/clairctl

GOOS=darwin GOARCH=386 -o clairctl-darwin-386 ./cmd/clairctl
GOOS=linux GOARCH=386 -o clairctl-linux-386 ./cmd/clairctl
GOOS=windows GOARCH=386 -o clairctl-windows-386 ./cmd/clairctl
GOOS=darwin GOARCH=386 go build -o clairctl-darwin-386 ./cmd/clairctl
GOOS=linux GOARCH=386 go build -o clairctl-linux-386 ./cmd/clairctl
GOOS=windows GOARCH=386 go build -o clairctl-windows-386 ./cmd/clairctl

- name: Create Release Archive
run: |
Expand Down

0 comments on commit 9aa8adc

Please sign in to comment.