Skip to content

Commit 092fa58

Browse files
add deploy.yml
1 parent a950018 commit 092fa58

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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

Gemfile.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@ GEM
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)
@@ -78,6 +82,8 @@ GEM
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)
@@ -87,6 +93,7 @@ GEM
8793

8894
PLATFORMS
8995
arm64-darwin
96+
x64-mingw-ucrt
9097
x86_64-linux-gnu
9198

9299
DEPENDENCIES

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
33
theme: just-the-docs
44

55
url: https://just-the-docs.github.io

0 commit comments

Comments
 (0)