Skip to content

Added content/post/2024-11-24-fedup.md #27

Added content/post/2024-11-24-fedup.md

Added content/post/2024-11-24-fedup.md #27

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.91.2'
extended: true
- name: Build
run: hugo --minify
- name: Deploy to github.io
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
external_repository: disabilitywatch/disabilitywatch.github.io
personal_token: ${{ secrets.PERSONAL_TOKEN }}
publish_dir: ./public
cname: disability.watch