From 70ac2c255f141f398a6401adebb8f499ca715fbf Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 10 Feb 2026 19:45:01 +0100 Subject: [PATCH 1/3] docs: how to run locally --- Makefile | 4 ++++ RELEASE.md | 11 +++++++++++ 2 files changed, 15 insertions(+) diff --git a/Makefile b/Makefile index 31e0dd0b..cbbd933c 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ build: release: go run github.com/goreleaser/goreleaser/v2@$(GORELEASER_VERSION) release --clean +.PHONY: release-skip-docker +release-skip-docker: + go run github.com/goreleaser/goreleaser/v2@$(GORELEASER_VERSION) release --clean --skip=docker + .PHONY: release-notes release-notes: @./.ci/release-github.sh diff --git a/RELEASE.md b/RELEASE.md index d23350e4..5a51dfd3 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -26,3 +26,14 @@ Tag the release via your preferred tagging method. Tagging a release (v1.1.0) v This will trigger a build in the CI that will create the Build Artifacts and a Release in the Github UI. + +### Testing release locally + +> [!INFO] +> Configure your AWS credentials using https://github.com/okta/okta-aws-cli +> Use gh cli to configure the GITHUB_TOKEN + +1. export GORELEASER_CURRENT_TAG=v0.0.99999 +2. export GITHUB_TOKEN=$(gh auth token) +3. git tag "${GORELEASER_CURRENT_TAG}" -f +3. make release-skip-docker From 50c15455d2e5ad32e3f5750a6f6b401e0f1857bc Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 10 Feb 2026 19:46:18 +0100 Subject: [PATCH 2/3] chore --- RELEASE.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/RELEASE.md b/RELEASE.md index 5a51dfd3..f2d95698 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -37,3 +37,9 @@ and a Release in the Github UI. 2. export GITHUB_TOKEN=$(gh auth token) 3. git tag "${GORELEASER_CURRENT_TAG}" -f 3. make release-skip-docker + +#### Further details + +What does `GORELEASER_CURRENT_TAG` mean? + + See https://goreleaser.com/cookbooks/set-a-custom-git-tag From 63924d51c63edd14e6a899a8d6deba4e2d7bfe76 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 10 Feb 2026 19:47:37 +0100 Subject: [PATCH 3/3] chore --- RELEASE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index f2d95698..00289ac4 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -29,7 +29,7 @@ and a Release in the Github UI. ### Testing release locally -> [!INFO] +> [!TIP] > Configure your AWS credentials using https://github.com/okta/okta-aws-cli > Use gh cli to configure the GITHUB_TOKEN