Skip to content

Update syndication feeds #100

Update syndication feeds

Update syndication feeds #100

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Step 2: Set up Bun environment
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
# Step 3: Install dependencies with Bun
- name: Install dependencies
run: bun install
# Step 4: Build the project
- name: Build project
run: bun run build
# Step 5: Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build