Apply Prettier formatting to gh-pages workflow YAML file for CI compliance

This commit is contained in:
Matthew Hand 2024-11-05 23:17:16 +00:00
parent 13019fc57a
commit 08f5896407

View File

@ -1,7 +1,7 @@
---
name: Deploy site to Pages
name: Deploy site to Pages
on:
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
@ -9,19 +9,19 @@
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
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:
# 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
jobs:
jobs:
# Build job
build:
runs-on: ubuntu-latest