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 618a7f2 commit c083772Copy full SHA for c083772
.github/workflows/build-and-deploy.yml
@@ -36,11 +36,17 @@ jobs:
36
echo "vim=$(git -C work/vim rev-parse HEAD)" >> $GITHUB_OUTPUT
37
echo "vim_faq=$(git -C work/vim_faq rev-parse HEAD)" >> $GITHUB_OUTPUT
38
39
- # TODO: Jekyllのビルド。必要なパーツをgh-pagesブランチから持ってくる必要あり
40
-
41
- - name: Upload artifact
42
- uses: actions/upload-pages-artifact@v3
+ - name: Upload vim generated HTML files as an artifact
+ uses: actions/upload-artifact@v4
43
with:
+ name: vim-generated-html
44
path: target
45
+ # TODO: Jekyllのビルド。必要なパーツをgh-pagesブランチから持ってくる必要あり
46
+
47
+ #uses: actions/upload-pages-artifact@v3
48
+ #with:
49
+ # path: _site/
50
+ # retantion-days: 7
51
52
# TODO: masterへのpushもしくはcron実行のときだけ、GitHub Pagesへアップロードする
.gitignore
@@ -4,3 +4,4 @@
4
/target/
5
/vim/
6
/vim_faq/
7
+/tmp/
0 commit comments