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 Jun 12, 2024
1 parent da31e41 commit 513062a
Show file tree
Hide file tree
Showing 19 changed files with 152 additions and 379 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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 -- --base=spaced/demo --outDir=../../_site/demo
- run: npm run static:build -- --base=spaced
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
- 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 513062a

Please sign in to comment.