Skip to content

Deploy Hugo

Deploy Hugo #22

Workflow file for this run

name: Deploy Hugo
on:
workflow_dispatch:
repository_dispatch:
types: [deploy]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4