Skip to content

Add geodesic, startCap/endCap, and spans support for polylines and po… #53

Add geodesic, startCap/endCap, and spans support for polylines and po…

Add geodesic, startCap/endCap, and spans support for polylines and po… #53

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [main, master]
paths:
- 'openmapview/src/**/*.kt'
- 'README.md'
- '.github/workflows/_docs.yml'
- '.github/workflows/docs-deploy.yml'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build-docs:
name: Build Documentation
uses: ./.github/workflows/_docs.yml
deploy:
name: Deploy to GitHub Pages
needs: build-docs
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download documentation artifact
uses: actions/download-artifact@v4
with:
name: documentation
path: ./docs
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4