Skip to content

Commit

Permalink
ci: rename bin
Browse files Browse the repository at this point in the history
  • Loading branch information
raffis committed May 22, 2023
1 parent 34775df commit 60248a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
project_name: flux-kustomize-action

builds:
- id: package-retention
binary: package-retention
- id: flux-kustomize-action
binary: flux-kustomize-action
goos:
- linux
env:
- CGO_ENABLED=0

archives:
- id: package-retention
name_template: "package-retention_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
- id: flux-kustomize-action
name_template: "flux-kustomize-action_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
builds:
- package-retention
- flux-kustomize-action

checksum:
name_template: 'checksums.txt'
Expand All @@ -36,7 +36,7 @@ dockers:
dockerfile: Dockerfile
use: buildx
ids:
- package-retention
- flux-kustomize-action
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
Expand All @@ -53,7 +53,7 @@ dockers:
dockerfile: Dockerfile
use: buildx
ids:
- package-retention
- flux-kustomize-action
build_flag_templates:
- --platform=linux/arm64/v8
- --label=org.opencontainers.image.title={{ .ProjectName }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ code-gen:
./hack/code-gen.sh

build:
CGO_ENABLED=0 go build -ldflags="-s -w -X main.VERSION=$(VERSION)" -o ./bin/gh-bootstrap-repository .
CGO_ENABLED=0 go build -ldflags="-s -w -X main.VERSION=$(VERSION)" -o ./bin/flux-kustomize-action .

.PHONY: install
install:
Expand Down

0 comments on commit 60248a1

Please sign in to comment.