Conversation
GitHub Actions による ghcr.io/ibis-ssl/grsim への Docker イメージ自動ビルド・プッシュワークフローを実装。
主な機能:
- master/docker ブランチへのプッシュで自動ビルド・プッシュ
- タグ (v*.*.*) でバージョン管理されたイメージを生成
- PR では build のみ実行(プッシュなし)
- linux/amd64 プラットフォームをサポート
- GitHub Actions キャッシュによる高速ビルド
- SBOM と provenance attestation による透明性確保
タグ生成ルール:
- master ブランチ: latest, master, SHA
- docker ブランチ: docker, SHA
- タグ v1.2.3: 1.2.3, 1.2, SHA
- PR: pr-{number} (ビルドのみ)
🤖 Generated with [Claude Code](https://claude.ai/code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
GitHub Actions による ghcr.io/ibis-ssl/grsim への Docker イメージ自動ビルド・プッシュワークフローを実装しました。
主な機能
タグ生成ルール
latest,master,{SHA}docker,{SHA}1.2.3,1.2,{SHA}pr-N(ビルドのみ)動作確認
✅ docker ブランチでのワークフロー実行が成功しました
テスト方法
マージ後の影響
master にマージすると、以下のタグが自動生成されます:
ghcr.io/ibis-ssl/grsim:latestghcr.io/ibis-ssl/grsim:masterghcr.io/ibis-ssl/grsim:{SHA}🤖 Generated with Claude Code