Skip to content

docs: Update actionable notifications subflow for Android to v1.1.0 #178

docs: Update actionable notifications subflow for Android to v1.1.0

docs: Update actionable notifications subflow for Android to v1.1.0 #178

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "docs/**"
- "examples/**"
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # For last-updated time
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm docs:build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./docs/.vuepress/dist
force_orphan: true