Skip to content

Clean README.md

Clean README.md #44

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branch:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/[email protected]
with:
ruby-version: '2.7'
bundler-cache: true
- run: bundle exec jekyll build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site