File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,16 @@ jobs:
2929 uses : ruby/setup-ruby@v1
3030 with :
3131 ruby-version : ' 3.1'
32- bundler-cache : true
33- cache-version : 0
32+ working-directory : ./docs
3433 - name : Setup Pages
3534 id : pages
3635 uses : actions/configure-pages@v4
36+ - name : Install dependencies
37+ run : bundle install
38+ working-directory : ./docs
3739 - name : Build with Jekyll
38- run : |
39- cd docs
40- bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
40+ run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
41+ working-directory : ./docs
4142 env :
4243 JEKYLL_ENV : production
4344 - name : Upload artifact
Original file line number Diff line number Diff line change @@ -36,3 +36,4 @@ docs/.sass-cache/
3636docs /.jekyll-cache /
3737docs /.jekyll-metadata
3838docs /Gemfile.lock
39+ docs /vendor /
Original file line number Diff line number Diff line change 11source "https://rubygems.org"
22
3+ gem "jekyll"
4+ gem "bundler"
35gem "github-pages" , group : :jekyll_plugins
46gem "jekyll-seo-tag"
57gem "jekyll-sitemap"
You can’t perform that action at this time.
0 commit comments