GitHub Pagesワークフロージェネレーターとは
GitHub Pagesワークフロージェネレーターは、静的サイトをGitHub PagesにデプロイするためのGitHub ActionsワークフローYAMLを生成します。 出力は公開サイトに使う前に確認しやすい形で表示されます。
Quick answer
A GitHub Actions workflow automates building and deploying your static site to GitHub Pages on every push. The generated YAML includes the standard permissions, concurrency settings, and build steps.
Limitations
- The generated workflow is a standard template. Custom build tools, monorepos, or multi-step pipelines may need additional job steps or custom actions.
- GitHub Pages deployment via Actions only works for public repositories or private repositories with GitHub Pro, Team, or Enterprise plans.
- The CNAME placeholder file must be created or copied into the output directory if the site uses a custom domain.
使い方
- 必要な値を入力します。
- 結果パネルの出力を確認します。
- ページに合う部分だけコピーします。
- 公開前にブラウザとホスティング環境で確認します。
主な用途
- 公開前の繰り返し作業を短くする。
- マークアップ、CSS、チェックリストを準備する。
- 静的サイトで見落としやすい小さなミスを減らす。