Skip to content

Commit

Permalink
Merge pull request #988 from CesiumGS/cesium.com
Browse files Browse the repository at this point in the history
Generate reference documentation from the cesium.com branch and publish it to the web site
  • Loading branch information
j9liu authored Nov 19, 2024
2 parents 9047047 + 109cfdb commit b4badfb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: prod
on:
push:
branches:
- 'cesium.com'
jobs:
deploy-docs:
runs-on: ubuntu-22.04
env:
AWS_ACCESS_KEY_ID: ${{ secrets.NATIVE_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.NATIVE_SECRET_KEY }}
AWS_REGION: us-east-1
steps:
- name: Install Doxygen
run: |
sudo apt install -y doxygen
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Generate Documentation
run: |
npm install
cmake -B build -S .
cmake --build build --target cesium-native-docs
- name: Deploy to cesium.com
if: ${{ env.AWS_ACCESS_KEY_ID != '' }}
run: |
aws s3 sync build/doc/html/ s3://cesium-website/cesium-native/ref-doc/ --cache-control "public, max-age=1800" --delete

0 comments on commit b4badfb

Please sign in to comment.