Skip to content

Update README.md

Update README.md #31

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
uses: "noelmiller/pelican/.github/workflows/github_pages.yml@main"
with:
settings: "publishconf.py"
requirements: "-r requirements.txt"
deploy:
if: github.event_name != 'pull_request'
permissions:
contents: "read"
pages: "write"
id-token: "write"
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4