Skip to content

Merge pull request #11 from Qanux/patch-1 #30

Merge pull request #11 from Qanux/patch-1

Merge pull request #11 from Qanux/patch-1 #30

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
# manual trigger
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# only allow one deployment at a time, skip the queue if there's one running and the latest in queue
concurrency:
group: pages
cancel-in-progress: false
defaults:
run:
shell: bash
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
WEBSITE_DIR: "."
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
# fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: latest
run_install: false
# standalone: true
# - uses: oven-sh/setup-bun@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build the website
run: |
pnpm run setup
pnpm run build --outDir=dist
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4