Skip to content

Commit

Permalink
Add GitHub Pages deployment actions.
Browse files Browse the repository at this point in the history
Deploy uploaded artifacts to GitHub Pages.
  • Loading branch information
nuclearsandwich committed Aug 15, 2024
1 parent dd24c6f commit 43c5e24
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pages-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Deploy to GitHub Pages
on:
push:
# NOTE: As of 2024-08-15, this event will only trigger a workflow run if
# the workflow file is on the default branch.
# This is our desired behavior but if this default ever changes we may need
# to add additional guard clauses to make sure we are only deploying
# artifacts from the main branch.
#
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#workflow_run
workflow_run:
workflows: ['CI']
types: ['completed']

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy:
permissions:
contents: read
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
if: ${{ github_event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 43c5e24

Please sign in to comment.