Skip to content

Update main.yml

Update main.yml #142

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- main
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.4' # Match the Ruby version your project uses
- name: Install dependencies
run: 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 }}
# steps:
# - uses: actions/cache@v2
# with:
# path: vendor/bundle
# key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
# restore-keys: |
# ${{ runner.os }}-gems-
#
#- uses: limitusus/json-syntax-check@v1
# with:
# pattern: "\\bio.json$"
#- uses: helaili/jekyll-action@2.5.0 # Choose any one of the Jekyll Actions
# with: # Some relative inputs of your action
# token: ${{ secrets.GITHUB_TOKEN }}
# target_branch: 'gh-pages'