Skip to content

update build location (from apex) #1

update build location (from apex)

update build location (from apex) #1

Workflow file for this run

name: Deploy Jekyll site to GitHub Pages
on:
push:
branches:
- master
permissions:
contents: write # needed to push to gh-pages
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # pick a stable Ruby version
bundler-cache: true
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Build Jekyll site
run: bundle exec jekyll build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_branch: gh-pages