Skip to content

Update landing page copy and reorganize documentation tiles #6

Update landing page copy and reorganize documentation tiles

Update landing page copy and reorganize documentation tiles #6

Workflow file for this run

# πŸ“¦ .github/workflows/deploy.yml
name: πŸš€ Deploy to Cloudflare Workers
on:
push:
branches:
- development
jobs:
deploy:
name: 🌍 Build & Deploy
runs-on: ubuntu-latest
steps:
- name: 🧾 Checkout
uses: actions/checkout@v4
- name: πŸ“¦ Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: πŸ“¦ Get pnpm store path
id: pnpm-cache-path
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: ♻️ Cache dependencies
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache-path.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: πŸ“₯ Install Dependencies
run: pnpm install
- name: πŸ› οΈ Build Project
run: pnpm run build
- name: ☁️ Deploy to Cloudflare
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: pnpm exec wrangler deploy