mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: Documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout the code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install latest nightly
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
override: true
|
|
continue-on-error: true
|
|
|
|
- name: Add EGL for OpenGL
|
|
run: |
|
|
sudo apt-get update -y -qq
|
|
sudo apt-get install -y -qq libegl1-mesa-dev
|
|
|
|
- name: Build the docs (nightly)
|
|
run: |
|
|
cargo +nightly doc --lib
|
|
|
|
- name: Build the docs (stable)
|
|
run: cargo +stable doc --lib
|
|
if: ${{ failure() }}
|
|
|
|
- name: Deploy the docs
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
with:
|
|
ACCESS_TOKEN: ${{ secrets.WEB_DEPLOY }}
|
|
FOLDER: target/doc
|
|
REPOSITORY_NAME: gfx-rs/wgpu-rs.github.io
|
|
BRANCH: master
|
|
TARGET_FOLDER: doc
|