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 name: Deploy Hugo site to Pages
on: on:
# Runs on pushes targeting the default branch
push: push:
branches: branches:
- main # Set a branch to deploy - main
schedule:
- cron: '15 1 * * *' # 01:15 UTC daily # Allows you to run this workflow manually from the Actions tab
pull_request:
workflow_dispatch: workflow_dispatch:
permissions:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read contents: read
pages: write pages: write
id-token: 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: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest