-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #988 from CesiumGS/cesium.com
Generate reference documentation from the cesium.com branch and publish it to the web site
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
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 |