Skip to content

Fix type mappings and enhance platform field segregation (#530) #16

Fix type mappings and enhance platform field segregation (#530)

Fix type mappings and enhance platform field segregation (#530) #16

Workflow file for this run

name: Deploy Documentation
on:
workflow_dispatch:
push:
branches: [main]
paths:
- "docs/**"
- ".github/workflows/docs.yml"
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "latest"
- name: Install dependencies
run: |
cd docs
bun install
- name: Build website
run: |
cd docs
bun run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
publish_branch: gh-pages
cname: flutter-inapp-purchase.hyo.dev
force_orphan: true