🐡
【覚書】JekyllなGitHubPagesのルートをdistにし、これが変更されるまでビルドさせない
- ブランチの
Settings
を開く。 - 左サイドバーから
Pages
を選ぶ。 -
Build and deployment
のSource
をGitHub Actions (Beta)
にする。 -
GitHub Pages Jekyll
が出てくるので、そのConfigure
を押す。 -
jekyll-gh-pages.yml
を新規作成するエディタが開くので、以下のように変更。
on:
# Runs on pushes targeting the default branch
push:
+ paths:
+ - "dist/**"
branches: ["main"]
~~ 中略 ~~
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
- source: ./
+ source: ./dist
destination: ./_site
-
Start commit
をクリック。 -
Commit direcrly to the main branch.
にチェックが入っているのを確認。 -
Commit new file
をクリック。 - あとは、
dist
を変更して問題なく走るか確認すればおk
補足
docs
にしたいなら、 dist
と書いてるところ全部 docs
に置き換えればおk
Discussion