From 8d7970a49236de81cf5eba0898228471ce13dc94 Mon Sep 17 00:00:00 2001 From: Manabu Mccloskey Date: Tue, 24 Oct 2023 11:06:51 -0700 Subject: [PATCH] rename to idpbuilder Signed-off-by: Manabu Mccloskey --- .github/workflows/release.yaml | 2 +- .goreleaser.yaml | 4 ++-- Makefile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 99147410..27806601 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,7 +21,7 @@ jobs: # Ensure generation tools run - name: build run: | - OUT_FILE=/tmp/localidp make build + OUT_FILE=/tmp/idpbuilder make build - name: GoReleaser uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # v5.0.0 id: run-goreleaser diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 2817ca77..c10a72d0 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -1,4 +1,4 @@ -project_name: localidp +project_name: idpbuilder before: hooks: @@ -12,7 +12,7 @@ builds: goarch: - amd64 - arm64 - binary: localidp + binary: idpbuilder ignore: - goos: linux goarch: '386' diff --git a/Makefile b/Makefile index 4d0bb625..d850cc69 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -# The name of the binary. Defaults to localidp -OUT_FILE ?= localidp +# The name of the binary. Defaults to idpbuilder +OUT_FILE ?= idpbuilder .PHONY: build build: manifests generate fmt vet