mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-04-27 21:35:51 +00:00
5181bef6c8
Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.5.1 to 2.6.0. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/v2.5.1...v2.6.0) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
77 lines
1.7 KiB
YAML
77 lines
1.7 KiB
YAML
name: Build and deploy the documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
|
|
|
|
jobs:
|
|
build:
|
|
name: Build the documentation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v3.5.3
|
|
|
|
- name: Install Rust toolchain
|
|
run: |
|
|
rustup toolchain install stable
|
|
rustup default stable
|
|
|
|
- name: Setup Rust cache
|
|
uses: Swatinem/rust-cache@v2.6.0
|
|
with:
|
|
save-if: "${{ github.event_name != 'pull_request' }}"
|
|
|
|
- name: Setup mdBook
|
|
uses: peaceiris/actions-mdbook@v1.2.0
|
|
with:
|
|
mdbook-version: '0.4.32'
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v3.7.0
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Build the documentation
|
|
run: sh misc/build-docs.sh
|
|
|
|
- name: Fix permissions
|
|
run: |
|
|
chmod -c -R +rX "target/book/" | while read line; do
|
|
echo "::warning title=Invalid file permissions automatically fixed::$line"
|
|
done
|
|
|
|
- name: Upload GitHub Pages artifacts
|
|
uses: actions/upload-pages-artifact@v2.0.0
|
|
with:
|
|
path: target/book/
|
|
|
|
deploy:
|
|
name: Deploy the documentation on GitHub Pages
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
if: github.ref == 'refs/heads/main'
|
|
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v2.0.3
|