From 3509d9677a38d2f749750818bd6ef8a4a6907164 Mon Sep 17 00:00:00 2001 From: Christopher Maher Date: Fri, 28 Nov 2025 23:37:28 -0800 Subject: [PATCH] fix: use correct GitHub org (defilantech) for Docker image registry --- .goreleaser.yaml | 32 ++++++++++++++++---------------- CLAUDE.md | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 95e8fe1..d23c420 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -49,8 +49,8 @@ dockers: ids: - issueparser image_templates: - - "ghcr.io/defilan/issueparser:{{ .Version }}-amd64" - - "ghcr.io/defilan/issueparser:latest-amd64" + - "ghcr.io/defilantech/issueparser:{{ .Version }}-amd64" + - "ghcr.io/defilantech/issueparser:latest-amd64" dockerfile: Dockerfile.goreleaser use: buildx build_flag_templates: @@ -67,8 +67,8 @@ dockers: ids: - issueparser image_templates: - - "ghcr.io/defilan/issueparser:{{ .Version }}-arm64" - - "ghcr.io/defilan/issueparser:latest-arm64" + - "ghcr.io/defilantech/issueparser:{{ .Version }}-arm64" + - "ghcr.io/defilantech/issueparser:latest-arm64" dockerfile: Dockerfile.goreleaser use: buildx build_flag_templates: @@ -80,15 +80,15 @@ dockers: - "--label=org.opencontainers.image.source={{.GitURL}}" docker_manifests: - - name_template: "ghcr.io/defilan/issueparser:{{ .Version }}" + - name_template: "ghcr.io/defilantech/issueparser:{{ .Version }}" image_templates: - - "ghcr.io/defilan/issueparser:{{ .Version }}-amd64" - - "ghcr.io/defilan/issueparser:{{ .Version }}-arm64" + - "ghcr.io/defilantech/issueparser:{{ .Version }}-amd64" + - "ghcr.io/defilantech/issueparser:{{ .Version }}-arm64" - - name_template: "ghcr.io/defilan/issueparser:latest" + - name_template: "ghcr.io/defilantech/issueparser:latest" image_templates: - - "ghcr.io/defilan/issueparser:latest-amd64" - - "ghcr.io/defilan/issueparser:latest-arm64" + - "ghcr.io/defilantech/issueparser:latest-amd64" + - "ghcr.io/defilantech/issueparser:latest-arm64" snapshot: version_template: "{{ incpatch .Version }}-next" @@ -123,7 +123,7 @@ changelog: release: github: - owner: defilan + owner: defilantech name: issueparser name_template: "v{{.Version}}" @@ -142,7 +142,7 @@ release: ### Docker ```bash - docker pull ghcr.io/defilan/issueparser:{{ .Version }} + docker pull ghcr.io/defilantech/issueparser:{{ .Version }} ``` ### Manual Download @@ -150,22 +150,22 @@ release: **macOS** ```bash # ARM64 (Apple Silicon) - curl -L https://github.com/defilan/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_darwin_arm64.tar.gz | tar xz + curl -L https://github.com/defilantech/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_darwin_arm64.tar.gz | tar xz sudo mv issueparser /usr/local/bin/ # AMD64 - curl -L https://github.com/defilan/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_darwin_amd64.tar.gz | tar xz + curl -L https://github.com/defilantech/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_darwin_amd64.tar.gz | tar xz sudo mv issueparser /usr/local/bin/ ``` **Linux** ```bash # AMD64 - curl -L https://github.com/defilan/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_linux_amd64.tar.gz | tar xz + curl -L https://github.com/defilantech/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_linux_amd64.tar.gz | tar xz sudo mv issueparser /usr/local/bin/ # ARM64 - curl -L https://github.com/defilan/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_linux_arm64.tar.gz | tar xz + curl -L https://github.com/defilantech/issueparser/releases/download/v{{ .Version }}/issueparser_{{ .Version }}_linux_arm64.tar.gz | tar xz sudo mv issueparser /usr/local/bin/ ``` diff --git a/CLAUDE.md b/CLAUDE.md index 57d87e8..9031c68 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -40,7 +40,7 @@ IssueParser is a Go CLI tool that analyzes GitHub issues using an LLM to identif - **Tests & Lint** - Run on every PR and push to main - **Release Please** - Automates version bumps and changelogs based on conventional commits - **GoReleaser** - Builds cross-platform binaries (linux/darwin × amd64/arm64) and Docker images on release -- Docker images published to `ghcr.io/defilan/issueparser` +- Docker images published to `ghcr.io/defilantech/issueparser` ## Conventions