File tree Expand file tree Collapse file tree 2 files changed +35
-3
lines changed Expand file tree Collapse file tree 2 files changed +35
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and deploy this site to GitHub Pages
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ github-pages :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : ruby/setup-ruby@v1
14
+ with :
15
+ ruby-version : 3.1
16
+ bundler-cache : true
17
+ - name : Setup Node
18
+ uses : actions/setup-node@v2
19
+ with :
20
+ node-version : ' 18'
21
+ - run : npm install
22
+ - name : Build site
23
+ uses : limjh16/jekyll-action-ts@v2
24
+ with :
25
+ enable_cache : true
26
+ - name : Deploy
27
+ uses : peaceiris/actions-gh-pages@v3
28
+ with :
29
+ github_token : $
30
+ publish_dir : ./_site
Original file line number Diff line number Diff line change 1
- url : " "
2
- baseurl : " "
1
+ url : " https://biannetta.github.io "
2
+ baseurl : " biannetta.github.io "
3
3
title : " Benjamin Iannetta, MBA"
4
4
5
5
plugins :
6
6
- jekyll-postcss
7
7
8
8
postcss :
9
- cache : false
9
+ cache : false
10
+
11
+ include : ["node_modules/tailwindcss"]
You can’t perform that action at this time.
0 commit comments