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