Skip to content

Let there be Earth Defenders Assistant _\|/_ #1

Let there be Earth Defenders Assistant _\|/_

Let there be Earth Defenders Assistant _\|/_ #1

Workflow file for this run

name: Deploy Landing Page to GitHub Pages
on:
push:
branches: [ main ]
paths:
- 'apps/landingpage/**'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build:landingpage
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./apps/landingpage/dist