Skip to content

restore gem update --system because apparently jekyll won't run witho… #18

restore gem update --system because apparently jekyll won't run witho…

restore gem update --system because apparently jekyll won't run witho… #18

Workflow file for this run

name: Publish to GitHub Pages
on:
push:
branches: [main, master]
jobs:
jekyll:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Use the GitHub Actions cache to shorten build times and decrease load on servers
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('Gemfile') }}
restore-keys: ${{ runner.os }}-gems-
# Standard usage
- uses: helaili/jekyll-action@v2
with:
pre_build_commands:
- gem update --system
- sed -i "s/^#baseurl: .*/baseurl: \/${{ github.event.repository.name }}/" _config.yml

Check failure on line 21 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
token: ${{ secrets.GITHUB_TOKEN }}