This commit is contained in:
Sophia Atkinson 2023-11-01 19:10:41 -07:00 committed by GitHub
parent ab0f67a957
commit 59fb193f05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 6 deletions

View File

@ -1,19 +1,32 @@
# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy Hugo site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches:
- main # Set a branch to deploy
schedule:
- cron: '15 1 * * *' # 01:15 UTC daily
pull_request:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
# Default to bash
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest