Skip to content

gh-pages-docc

gh-pages-docc #2639

Workflow file for this run

name: gh-pages-docc
permissions:
id-token: write
pages: write
contents: write
on:
workflow_dispatch:
workflow_run:
workflows:
- ios-ci
types:
- completed
jobs:
gh-pages-docc-build:
if: ${{ github.ref_name == 'main' }}
name: Build DocC Docs
runs-on: macos-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v4
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v4
with:
aws-region: us-west-2
role-to-assume: ${{ vars.OIDC_AWS_ROLE_TO_ASSUME }}
role-session-name: ${{ github.run_id }}
- name: Build DocC documentation
working-directory: .
run: |
HOSTING_BASE_PATH="maplibre-native/ios/latest" platform/ios/scripts/docc.sh
# workaround since colons in filenames are not allowed in artifacts
# https://github.com/actions/upload-artifact/issues/333
- name: Create ZIP archive
run: |
cd build
zip -r docs.zip docs/
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: docc-docs
path: build/docs.zip
gh-pages-docc-deploy:
needs: gh-pages-docc-build
name: Deploy DocC Docs
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v4
- name: Download DocC docs artifacts
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v4
with:
name: docc-docs
path: build
- name: Unzip documentation
run: |
cd build
unzip docs.zip
rm docs.zip
- name: Deploy DocC documentation (main) 🚀
uses: JamesIves/github-pages-deploy-action@4a3abc783e1a24aeb44c16e869ad83caf6b4cc23 # v4.7.4
with:
branch: gh-pages
folder: build/docs
target-folder: ios/latest/