Skip to content

Halborn audit fixes (#198) #40

Halborn audit fixes (#198)

Halborn audit fixes (#198) #40

Workflow file for this run

name: ci-docs
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions-rs/toolchain@v1
with:
profile: minimal
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- uses: extractions/setup-just@v1
- run: just prepare
- run: just rebuild-docs
- run: git config --local user.email "action@github.com"
- run: git config --local user.name "GitHub Action"
- run: git add -f docs/
- run: git commit -m "Docs"
- run: git config --global --add safe.directory /github/workspace
- name: Push to gh-pages
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true
directory: .