Skip to content

Commit

Permalink
Deploy docs to web site.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Nov 6, 2024
1 parent be7cfe2 commit 109cfdb
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 109cfdb

Please sign in to comment.