Desktop backgrounding support #6107
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docs: | |
runs-on: ubuntu-20.04 | |
name: Build Latest API Docs | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
# ---- setup of systems | |
- name: Setup flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.22' | |
channel: 'stable' | |
- name: Install supported toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
# ---- Install extra tools | |
- name: Install Dartdocs | |
run: flutter pub global activate dartdoc | |
# | |
- name: Versions | |
run: | | |
echo "--- Rust" | |
cargo -V | |
echo "--- Flutter doctor" | |
flutter doctor | |
echo "--- dartdoct" | |
flutter pub global run dartdoc --version | |
# ---- Actual build steps | |
- name: Build Rust docs | |
run: | | |
cargo doc -p acter -p acter-core -p matrix-sdk-store-media-cache-wrapper | |
echo --- Moving docs | |
mv target/doc/ docs/static/api/main/rust | |
- name: Build Dart App | |
run: flutter pub global run dartdoc --include-external integration_test/main_test.dart --output ../docs/static/api/main/app/ | |
working-directory: app | |
- name: Checking for bindings | |
run: ls -ltas packages/rust_sdk/lib/ | |
- name: Build Dart SDK | |
run: flutter pub global run dartdoc --output ../../../docs/static/api/main/dart-sdk/ | |
working-directory: packages/rust_sdk | |
# ---- Finalisation for github pages | |
- name: build zola | |
uses: shalzz/[email protected] | |
if: ${{ github.ref == 'refs/heads/main' }} | |
env: | |
BUILD_DIR: docs | |
PAGES_BRANCH: "gh-pages" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |