Skip to content

Commit

Permalink
Deploy DocC docs from Ubuntu workflow (maplibre#3170)
Browse files Browse the repository at this point in the history
  • Loading branch information
louwers authored Jan 22, 2025
1 parent ec4d6e6 commit 6f5b72f
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 11 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/gh-pages-docc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
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@v4

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@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@v4
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@v4

- name: Download DocC docs artifacts
uses: actions/download-artifact@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/[email protected]
with:
branch: gh-pages
folder: build/docs
target-folder: ios/latest/
10 changes: 0 additions & 10 deletions .github/workflows/ios-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ on:
permissions:
id-token: write # needed for AWS
contents: write # allow making a release
pages: write

jobs:
pre_job:
Expand Down Expand Up @@ -200,15 +199,6 @@ jobs:
run: |
HOSTING_BASE_PATH="maplibre-native/ios/latest" platform/ios/scripts/docc.sh
- name: Deploy DocC documentation (main) 🚀
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected]
continue-on-error: true
with:
branch: gh-pages
folder: build/docs
target-folder: ios/latest/

ios-release:
runs-on: macos-14
needs: ios-build
Expand Down
2 changes: 1 addition & 1 deletion platform/windows/vendor/vcpkg
Submodule vcpkg updated 1745 files

0 comments on commit 6f5b72f

Please sign in to comment.