Skip to content

Remove code of conduct from the repo (use the org-wide one) #1081

Remove code of conduct from the repo (use the org-wide one)

Remove code of conduct from the repo (use the org-wide one) #1081

Workflow file for this run

name: JSON BinPack
on:
- push
jobs:
website:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install --yes doxygen bundler
- run: cmake --version
- run: cmake --preset release --log-context
- run: cmake --build --preset release --target bundler
# Jekyll is often flaky on GitHub Actions
- run: ./scripts/retry.sh cmake --build --preset release --target jekyll
- run: cmake --build --preset release --target doxygen
# Only deploy website from the main branch
- if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/release/www