Merge pull request #74 from AAdewunmi/fix-deploy-pages

Fix deploy pages
This commit is contained in:
Adrian Adewunmi 2026-07-24 12:33:50 +01:00 committed by GitHub
commit ef5a4d1978
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 38 additions and 0 deletions

38
.github/workflows/deploy-pages.yml vendored Normal file
View File

@ -0,0 +1,38 @@
name: Deploy GitHub Pages
on:
push:
branches:
- main
workflow_dispatch: {}
permissions:
contents: read
pages: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4