File tree Expand file tree Collapse file tree 3 files changed +51
-2
lines changed
Expand file tree Collapse file tree 3 files changed +51
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Build and Deploy Jekyll Site
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ permissions :
9+ contents : read
10+ pages : write
11+ id-token : write
12+
13+ concurrency :
14+ group : " pages"
15+ cancel-in-progress : false
16+
17+ jobs :
18+ build-deploy :
19+ runs-on : ubuntu-latest
20+ steps :
21+ - uses : actions/checkout@v4
22+
23+ - name : Setup Ruby
24+ uses : ruby/setup-ruby@v1
25+ with :
26+ ruby-version : 3.1
27+
28+ - name : Install dependencies
29+ run : |
30+ gem install bundler
31+ bundle install
32+
33+ - name : Build site
34+ run : bundle exec jekyll build
35+
36+ - name : Upload artifact
37+ uses : actions/upload-pages-artifact@v2
38+ with :
39+ path : ./_site
40+
41+ - name : Deploy to GitHub Pages
42+ uses : actions/deploy-pages@v2
Original file line number Diff line number Diff line change 1313 http_parser.rb (~> 0 )
1414 eventmachine (1.2.7 )
1515 ffi (1.17.1-arm64-darwin )
16+ ffi (1.17.1-x64-mingw-ucrt )
1617 ffi (1.17.1-x86_64-linux-gnu )
1718 forwardable-extended (2.6.0 )
1819 google-protobuf (4.29.3-arm64-darwin )
1920 bigdecimal
2021 rake (>= 13 )
22+ google-protobuf (4.29.3-x64-mingw-ucrt )
23+ bigdecimal
24+ rake (>= 13 )
2125 google-protobuf (4.29.3-x86_64-linux )
2226 bigdecimal
2327 rake (>= 13 )
7882 safe_yaml (1.0.5 )
7983 sass-embedded (1.83.4-arm64-darwin )
8084 google-protobuf (~> 4.29 )
85+ sass-embedded (1.83.4-x64-mingw-ucrt )
86+ google-protobuf (~> 4.29 )
8187 sass-embedded (1.83.4-x86_64-linux-gnu )
8288 google-protobuf (~> 4.29 )
8389 terminal-table (3.0.2 )
8793
8894PLATFORMS
8995 arm64-darwin
96+ x64-mingw-ucrt
9097 x86_64-linux-gnu
9198
9299DEPENDENCIES
Original file line number Diff line number Diff line change 1- title : Just the Docs Template
2- description : A starter template for a Jeykll site using the Just the Docs theme!
1+ title : 10 Days of Code with IA
2+ description : A quickstart for Vibe Coders with no coding experience
33theme : just-the-docs
44
55url : https://just-the-docs.github.io
You can’t perform that action at this time.
0 commit comments