File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 ruby-version : ' 3.1' # Not needed with a .ruby-version file
1919 bundler-cache : true # runs 'bundle install' and caches installed gems automatically
2020 cache-version : 0 # Increment this number if you need to re-download cached gems
21+ working-directory : ' ${{ github.workspace }}/site'
2122 - name : Build with Jekyll
22- run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
23+ run : |
24+ cd site
25+ bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
Original file line number Diff line number Diff line change 4646 uses : actions/configure-pages@v5
4747 - name : Build with Jekyll
4848 # Outputs to the './_site' directory by default
49- run : bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
49+ run : |
50+ cd site
51+ bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
5052 env :
5153 JEKYLL_ENV : production
5254 - name : Upload artifact
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ ruby -v
5656node -v
5757# clean
5858git clean -dfX -n
59+ git clean -dfX
5960rm Gemfile.lock
6061rm -r .bundle vendor/bundle
6162bundle clean --force
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22
3- gem "jekyll" , "~> 4.3.4 " # installed by `gem jekyll`
3+ gem "jekyll" , "~> 4.4.1 " # installed by `gem jekyll`
44# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
5+ gem 'thin' # thin replaced webrick https://stackoverflow.com/a/27654081
56
67gem "just-the-docs" , "0.10.1" # pinned to the current release
78# gem "just-the-docs" # always download the latest release
Original file line number Diff line number Diff line change 33 specs:
44 addressable (2.8.7 )
55 public_suffix (>= 2.0.2 , < 7.0 )
6+ base64 (0.2.0 )
67 bigdecimal (3.1.9 )
78 colorator (1.1.0 )
89 concurrent-ruby (1.3.5 )
10+ csv (3.3.4 )
11+ daemons (1.4.1 )
912 em-websocket (0.5.3 )
1013 eventmachine (>= 0.12.9 )
1114 http_parser.rb (~> 0 )
1215 eventmachine (1.2.7 )
13- ffi (1.17.1 )
16+ ffi (1.17.2 )
1417 forwardable-extended (2.6.0 )
15- google-protobuf (4.29.3 -x86_64-linux )
18+ google-protobuf (4.30.2 -x86_64-linux )
1619 bigdecimal
1720 rake (>= 13 )
1821 http_parser.rb (0.8.0 )
1922 i18n (1.14.7 )
2023 concurrent-ruby (~> 1.0 )
21- jekyll (4.3.4 )
24+ jekyll (4.4.1 )
2225 addressable (~> 2.4 )
26+ base64 (~> 0.2 )
2327 colorator (~> 1.0 )
28+ csv (~> 3.0 )
2429 em-websocket (~> 0.5 )
2530 i18n (~> 1.0 )
2631 jekyll-sass-converter (>= 2.0 , < 4.0 )
2732 jekyll-watch (~> 2.0 )
33+ json (~> 2.6 )
2834 kramdown (~> 2.3 , >= 2.3.1 )
2935 kramdown-parser-gfm (~> 1.0 )
3036 liquid (~> 4.0 )
31- mercenary (>= 0.3.6 , < 0.5 )
37+ mercenary (~> 0.3 , >= 0.3.6 )
3238 pathutil (~> 0.9 )
3339 rouge (>= 3.0 , < 5.0 )
3440 safe_yaml (~> 1.0 )
3844 jekyll (>= 3.0 , < 5.0 )
3945 jekyll-include-cache (0.2.1 )
4046 jekyll (>= 3.7 , < 5.0 )
41- jekyll-sass-converter (3.0 .0 )
42- sass-embedded (~> 1.54 )
47+ jekyll-sass-converter (3.1 .0 )
48+ sass-embedded (~> 1.75 )
4349 jekyll-seo-tag (2.8.0 )
4450 jekyll (>= 3.8 , < 5.0 )
4551 jekyll-watch (2.2.1 )
4652 listen (~> 3.0 )
53+ json (2.10.2 )
4754 just-the-docs (0.10.1 )
4855 jekyll (>= 3.8.5 )
4956 jekyll-include-cache
6168 pathutil (0.16.2 )
6269 forwardable-extended (~> 2.6 )
6370 public_suffix (6.0.1 )
71+ rack (2.2.13 )
6472 rake (13.2.1 )
6573 rb-fsevent (0.11.2 )
6674 rb-inotify (0.11.1 )
6775 ffi (~> 1.0 )
68- rexml (3.4.0 )
76+ rexml (3.4.1 )
6977 rouge (4.5.1 )
7078 safe_yaml (1.0.5 )
71- sass-embedded (1.83.4 )
72- google-protobuf (~> 4.29 )
79+ sass-embedded (1.86.3 )
80+ google-protobuf (~> 4.30 )
7381 rake (>= 13 )
7482 terminal-table (3.0.2 )
7583 unicode-display_width (>= 1.1.1 , < 3 )
84+ thin (1.8.2 )
85+ daemons (~> 1.0 , >= 1.0.9 )
86+ eventmachine (~> 1.0 , >= 1.0.4 )
87+ rack (>= 1 , < 3 )
7688 unicode-display_width (2.6.0 )
7789 webrick (1.9.1 )
7890
7991PLATFORMS
8092 x86_64-linux
8193
8294DEPENDENCIES
83- jekyll (~> 4.3.4 )
95+ jekyll (~> 4.4.1 )
8496 jekyll-avatar (~> 0.8.0 )
8597 just-the-docs (= 0.10.1 )
98+ thin
8699
87100BUNDLED WITH
88- 2.3.15
101+ 2.3.26
You can’t perform that action at this time.
0 commit comments