feature: implement akatsuki CI/CD deployment workflow and documentation#147
Merged
feature: implement akatsuki CI/CD deployment workflow and documentation#147
Conversation
Implements Issue #143 (manual deployment workflow) and Issue #144 (documentation updates). Changes: - Add .github/workflows/akatsuki-deploy.yml - Manual deployment workflow triggered via workflow_dispatch - Extracts VERSION from Taskfile.yml automatically - Deploys 3 Docker images in parallel (default-arm, default-amd, python) - Dual tagging: version tags (e.g., default-arm-0.0.2) and latest tags (e.g., default-arm-latest) - fail-fast: true for consistency (all-or-nothing deployment) - Docker Hub authentication via GitHub Secrets - Update CLAUDE.md - Add CI/CD section to Akatsuki commands - Document PR builds and manual deployments - Rewrite akatsuki/README.md - Add comprehensive CI/CD documentation with GitHub Actions badges - Document deployment process step-by-step - Add Docker Hub authentication setup guide - Document version management and tagging strategy - Add local development, architecture, and contributing sections Closes #143 Closes #144 Related to #141 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Implements Issue #143 (manual deployment workflow) and Issue #144 (documentation updates) for the akatsuki Docker containers project.
Changes
1. Deploy Workflow (.github/workflows/akatsuki-deploy.yml)
workflow_dispatchfrom GitHub Actions tabakatsuki/Taskfile.ymltsuchiya55docker/akatsuki:default-arm-{version}+default-arm-latesttsuchiya55docker/akatsuki:default-amd-{version}+default-amd-latesttsuchiya55docker/akatsuki:python-{version}+python-latestfail-fast: true(ensures all-or-nothing deployment)2. CLAUDE.md Updates
3. akatsuki/README.md Complete Rewrite
Test Plan
grep '^ VERSION:' akatsuki/Taskfile.yml | awk '{print $2}'docker pull tsuchiya55docker/akatsuki:default-arm-0.0.2Related Issues
Notes
🤖 Generated with Claude Code