Skip to content

Merge pull request #54 from S8A/feature/tweak_icon_favicon_meta_tags #10

Merge pull request #54 from S8A/feature/tweak_icon_favicon_meta_tags

Merge pull request #54 from S8A/feature/tweak_icon_favicon_meta_tags #10

Workflow file for this run

# Source: https://mzrn.sh/2023/10/26/how-to-use-tailwind-css-with-jekyll-on-github-pages/
name: Build and deploy this site to GitHub Pages
on:
push:
branches:
- master
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
# TODO: Uncomment this to use Tailwind CSS
# - name: Setup Node
# uses: actions/setup-node@v2
# with:
# node-version: '18'
# - run: npm install
- name: Install ImageMagick
run: |
sudo apt-get update
sudo apt-get install -y imagemagick
- name: Build site
uses: limjh16/jekyll-action-ts@v2
with:
enable_cache: true
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site