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 16, 2024
1 parent dd24c6f commit 2fd5bc3
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
earthly --ci +build
upload:
runs-on: ubuntu-22.04
if: ${{ github.event_name == "push" }}
if: ${{ github.event_name == 'push' }}
needs: compile
steps:
- uses: actions/upload-pages-artifact@v3
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/pages-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Deploy to GitHub Pages
on:
# 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 2fd5bc3

Please sign in to comment.