Skip to content

fix, build: use custom GitHub pages build and deploy workflow #60

fix, build: use custom GitHub pages build and deploy workflow

fix, build: use custom GitHub pages build and deploy workflow #60

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec jekyll build
- uses: actions/upload-pages-artifact@v3
deploy:
needs: build

Check failure on line 22 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Build and deploy Jekyll site to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 22, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/deploy-pages@v4