Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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"
Expand Down Expand Up @@ -123,7 +123,7 @@ changelog:

release:
github:
owner: defilan
owner: defilantech
name: issueparser

name_template: "v{{.Version}}"
Expand All @@ -142,30 +142,30 @@ release:

### Docker
```bash
docker pull ghcr.io/defilan/issueparser:{{ .Version }}
docker pull ghcr.io/defilantech/issueparser:{{ .Version }}
```

### Manual Download

**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/
```

Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading