From ab0f67a957daa5d96fd82acbac4695553e6a3ee7 Mon Sep 17 00:00:00 2001 From: Sophia Date: Wed, 1 Nov 2023 19:07:15 -0700 Subject: [PATCH 1/2] Update hugo.yaml --- .github/workflows/hugo.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index b661fcf..9ef67ff 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -7,7 +7,12 @@ on: schedule: - cron: '15 1 * * *' # 01:15 UTC daily pull_request: + workflow_dispatch: + permissions: + contents: read + pages: write + id-token: write jobs: build: From 59fb193f059956c668e3caa546876eb0ae062142 Mon Sep 17 00:00:00 2001 From: Sophia Date: Wed, 1 Nov 2023 19:10:41 -0700 Subject: [PATCH 2/2] pls work --- .github/workflows/hugo.yaml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index 9ef67ff..4d9b037 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -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