2024-09-25 17:41:06 +00:00
|
|
|
name: Build and Deploy
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
jobs:
|
2024-09-25 18:30:12 +00:00
|
|
|
build:
|
2024-09-25 17:41:06 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout 🛎️
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-09-25 18:36:23 +00:00
|
|
|
- name: Install and Build
|
2024-09-25 17:41:06 +00:00
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
npx tsc
|
2024-09-25 18:36:23 +00:00
|
|
|
mkdir dist
|
|
|
|
mv *.js dist/
|
|
|
|
mv *.html dist/
|
2024-09-25 19:15:26 +00:00
|
|
|
- name: Setup Pages
|
|
|
|
id: pages
|
|
|
|
uses: actions/configure-pages@v5
|
2024-09-25 18:30:12 +00:00
|
|
|
- name: Upload GitHub Pages artifact
|
2024-09-25 18:36:23 +00:00
|
|
|
uses: actions/upload-pages-artifact@v3
|
|
|
|
with:
|
|
|
|
path: dist
|
2024-09-25 18:30:12 +00:00
|
|
|
|
|
|
|
# Deploy job
|
|
|
|
deploy:
|
|
|
|
# Add a dependency to the build job
|
|
|
|
needs: build
|
|
|
|
|
|
|
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
|
|
|
permissions:
|
|
|
|
pages: write # to deploy to Pages
|
|
|
|
id-token: write # to verify the deployment originates from an appropriate source
|
|
|
|
|
|
|
|
# Deploy to the github-pages environment
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
|
|
|
|
# Specify runner + deployment step
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
|
|
|
uses: actions/deploy-pages@v4
|