Skip to content

✨ Add Feature oauth2 pkce flow (#18) #16

✨ Add Feature oauth2 pkce flow (#18)

✨ Add Feature oauth2 pkce flow (#18) #16

Workflow file for this run

name: Generate and Deploy Docs
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Get files
uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Generate documentation
run: dart doc .
- name: Upload pages artifacts
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: ./doc/api
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4