Skip to content

Add initial list of launchers #13

Add initial list of launchers

Add initial list of launchers #13

Workflow file for this run

name: Publish documentation
on:
push:
branches:
- main
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Download dependencies
run: bun install
- name: Build site
id: build
run: bun run docs:build
- name: Upload static files as artifact
id: deployment
uses: actions/[email protected]
with:
path: .vitepress/dist/
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4