From 55020838c68e097653e071fc5c1195805407f423 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Wed, 14 Jan 2026 16:59:21 -0500 Subject: [PATCH] ci: add configuration to deploy to GitHub Pages Modern method. --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3623ed2..267c1ca0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,3 +49,22 @@ jobs: with: name: dist path: dist/ + + - name: Upload pages artifact + uses: actions/upload-pages-artifact@v3 + with: + path: dist/ + + deploy: + needs: build + runs-on: ubuntu-latest + permissions: + pages: write + id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4