Skip to content

Commit 9c7d914

Browse files
committed
Changes to make Tailwind Work
1 parent bb3c603 commit 9c7d914

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

.github/workflows/github-pages.yml

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

_config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
url: ""
2-
baseurl: ""
1+
url: "https://biannetta.github.io"
2+
baseurl: "biannetta.github.io"
33
title: "Benjamin Iannetta, MBA"
44

55
plugins:
66
- jekyll-postcss
77

88
postcss:
9-
cache: false
9+
cache: false
10+
11+
include: ["node_modules/tailwindcss"]

0 commit comments

Comments
 (0)