Skip to content

Delete workflows/jekyll.yml #2

Delete workflows/jekyll.yml

Delete workflows/jekyll.yml #2

Workflow file for this run

name: Build and Deploy Jekyll Site
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install dependencies
run: |
cd docs
bundle install
- name: Build Jekyll site
run: |
cd docs
bundle exec jekyll build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_site