Skip to content

Update Actions workflows to support deploying to GitHub Pages. #13

Update Actions workflows to support deploying to GitHub Pages.

Update Actions workflows to support deploying to GitHub Pages. #13

Workflow file for this run

---
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
compile:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: earthly/actions-setup@v1
- name: nanoc compile
run: |
earthly --ci +build
upload:
runs-on: ubuntu-22.04
if: ${{ github.event_name == "push" }}

Check failure on line 20 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 20, Col: 9): Unexpected symbol: '"push"'. Located at position 22 within expression: github.event_name == "push"
needs: compile
steps:
- uses: actions/upload-pages-artifact@v3
with:
path: output