ワンクリックで
degg-release
Release guidance for GoReleaser, GitHub Actions release tags, binary archives, Devbox tooling, and CLI version metadata in degg.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Release guidance for GoReleaser, GitHub Actions release tags, binary archives, Devbox tooling, and CLI version metadata in degg.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Local development workflow for degg. Use when orienting in the workspace, choosing just/go/GoReleaser commands, or validating general changes.
Generator guidance for declaration parsing, validation, enum template output, examples, and generated Go formatting in degg.
| name | degg-release |
| description | Release guidance for GoReleaser, GitHub Actions release tags, binary archives, Devbox tooling, and CLI version metadata in degg. |
Use this skill when changing GoReleaser, GitHub Actions, Devbox, .justfile,
or CLI version metadata.
Releases are tag-driven. Pushing a v* tag runs
.github/workflows/release.yml, which uses GoReleaser v2 to publish binary
archives for degg.
This repo publishes CLI binaries only. Do not add Docker or GHCR publishing unless a future task introduces a container runtime requirement.
Release builds inject these variables in cmd/degg/cli:
ProgramVersionProgramCommitSHAProgramBuildTimeThe local just build degg path injects development metadata from the current
commit and UTC timestamp.
Run:
goreleaser check
goreleaser release --snapshot --clean
If GoReleaser is not installed globally, use:
devbox run release-check
devbox run release-snapshot
go-version-file: go.mod in the workflow unless the module policy
changes.CGO_ENABLED=0; degg currently has no cgo dependency.