Skip to content

Updated post formatting and added tags #31

Updated post formatting and added tags

Updated post formatting and added tags #31

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- name: Install dependencies
run: |
bundle config unset deployment
sudo gem install bundler:2.2.15
bundle install
bundle add kramdown-parser-gfm
bundle install
- name: Build site
run: bundle exec jekyll build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site