Migrate blog build from GitHub Actions to Vercel#31
Merged
Conversation
- Disable blog.yml workflow that was committing generated files to main - Update vercel.json buildCommand to compile almo and generate posts/RSS - Add generated files to .gitignore (public/posts/, posts.json, rss.xml, etc.) - Untrack build artifacts from git index (git rm --cached) This stops the main cause of repo bloat: CI committing generated HTML, JSON indices, and cache files back to main on every push. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Vercel has a 256-character limit on buildCommand. Move the full build pipeline (almo compile, blog generation, RSS, React build) into a separate shell script. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
curl from astral.sh is more reliable on Vercel's build image than pip3 install. Also add PATH export for ~/.local/bin in build script. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
abap34
added a commit
that referenced
this pull request
Mar 11, 2026
Migrate blog build from GitHub Actions to Vercel
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
public/posts/,posts.json,rss.xml等の生成物を git 管理から除外scripts/vercel-build.shに almo コンパイル・記事生成・RSS 生成を集約Test plan
🤖 Generated with Claude Code