Add option to allow count of loadNext/loadPrevious on PaginatedTripLo… #71
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: Build Documentation | |
on: | |
push: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: macos-15 | |
steps: | |
- name: Setup Xcode | |
uses: actions/checkout@v4 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 # Xcode | |
with: | |
xcode-version: 'latest-stable' | |
- name: Build DocC | |
run: | | |
xcodebuild docbuild -scheme OJP \ | |
-derivedDataPath /tmp/docbuild \ | |
-destination 'generic/platform=iOS'; | |
$(xcrun --find docc) process-archive \ | |
transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/OJP.doccarchive \ | |
--hosting-base-path ojp-ios \ | |
--output-path docs; | |
echo "<script>window.location.href += \"/documentation/ojp\"</script>" > docs/index.html | |
- name: artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: 'docs' | |
- name: GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |