Skip to content

Merge pull request #384 from pacak/complete3 #171

Merge pull request #384 from pacak/complete3

Merge pull request #384 from pacak/complete3 #171

Workflow file for this run

on:
push:
branches:
- master
jobs:
check:
name: Deploy master docs to github pages
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Build docs
run: cargo doc --all-features --no-deps
- name: Make a new repo with generated docs
run: |
cd target/doc
touch .nojekyll
git init
git add -A
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
- name: Deploy docs to gh-pages
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true
directory: target/doc