Skip to content

Commit

Permalink
Custom gh pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekhorn committed May 28, 2024
1 parent 86cb58f commit 3b43368
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 332 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy static content to Pages

on:
push:
branches: ['gh-pages']
workflow_dispatch:

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:
group: 'pages'
cancel-in-progress: false

jobs:
deploy:
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run build --outDir=../_site/dist
- run: npm run static:build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
# with:
# pages: '_site'
- uses: actions/deploy-pages@v4
id: deployment
1 change: 0 additions & 1 deletion docs/index-aYNptdGO.css

This file was deleted.

Loading

0 comments on commit 3b43368

Please sign in to comment.