| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| name: Generate Docs |
| on: |
| push: |
| branches: |
| - main |
| workflow_dispatch: |
| |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages |
| permissions: |
| contents: read |
| pages: write |
| id-token: write |
| |
| # Allow only one concurrent deployment |
| concurrency: |
| group: "pages" |
| cancel-in-progress: true |
| |
| env: |
| RUST_TOOLCHAIN_VERSION: stable |
| |
| jobs: |
| deploy: |
| runs-on: ubuntu-latest |
| environment: |
| name: github-pages |
| url: ${{ steps.deployment.outputs.page_url }} |
| |
| steps: |
| - uses: actions/checkout@v3 |
| |
| - name: Cache Rust crates |
| uses: actions/cache@v3 |
| with: |
| path: | |
| ~/.cargo/bin/ |
| ~/.cargo/registry/index/ |
| ~/.cargo/registry/cache/ |
| ~/.cargo/git/db/ |
| key: test-native-${{ runner.os }}-${{ env.RUST_TOOLCHAIN_VERSION }}-${{ hashFiles('native/**/Cargo.lock') }} |
| restore-keys: | |
| test-native-${{ runner.os }}-${{ env.RUST_TOOLCHAIN_VERSION }} |
| |
| - name: Install Rust |
| uses: dtolnay/rust-toolchain@master |
| with: |
| toolchain: "${{ env.RUST_TOOLCHAIN_VERSION }}" |
| |
| - name: Install Erlang/OTP |
| uses: erlef/setup-beam@v1 |
| with: |
| otp-version: 25.1.0 |
| rebar3-version: '3.18.0' |
| |
| - name: Cache Hex packages |
| uses: actions/cache@v3 |
| with: |
| path: ~/.cache/rebar3/hex/hexpm/packages |
| key: ${{ runner.os }}-hex-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.lock')) }} |
| restore-keys: | |
| ${{ runner.os }}-hex- |
| |
| - name: Generate docs |
| run: rebar3 ex_doc |
| |
| - name: Upload artifact |
| uses: actions/upload-pages-artifact@v3 |
| with: |
| path: 'doc' |
| |
| - name: Deploy to GitHub Pages |
| id: deployment |
| uses: actions/deploy-pages@v4 |