Split out Android examples to separate documentation site (#2978) #1
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: gh-pages-android-examples | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'platform/android/**' | |
jobs: | |
gh-pages-android-examples: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: platform/android | |
shell: bash | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Generate documentation | |
run: make mkdocs-build | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: platform/android/site | |
target-folder: maplibre-native/android/examples/ |