We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e7e7d6 commit 12c4339Copy full SHA for 12c4339
.github/workflows/build-and-deploy.yml
@@ -42,11 +42,18 @@ jobs:
42
name: vim-generated-html
43
path: target
44
45
- # TODO: Jekyllのビルド。必要なパーツをgh-pagesブランチから持ってくる必要あり
46
-
47
- #uses: actions/upload-pages-artifact@v3
48
- #with:
49
- # path: _site/
50
- # retantion-days: 7
+ - name: Prepare for Jekyll build
+ run:
+ make jekyll-build-prepare
+ - name: Jekyll (GitHub Pages) build
+ uses: actions/jekyll-build-pages@v1
+ with:
51
+ source: target/jekyll-work
52
+ verbose: true
53
+ - name: Upload jekyll built site as an artifact
54
+ uses: actions/upload-pages-artifact@v3
55
56
+ path: _site/
57
+ retantion-days: 7
58
59
# TODO: masterへのpushもしくはcron実行のときだけ、GitHub Pagesへアップロードする
0 commit comments