Skip to content

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

Update Actions workflows to support deploying to GitHub Pages.

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

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' }}
needs: compile
steps:
- uses: actions/upload-pages-artifact@v3
with:
path: output