Skip to content

v0.31.9

v0.31.9 #689

Workflow file for this run

name: Docs
on:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
default:
runs-on: ubuntu-latest
steps:
- name: Version information
run: rustc --version; cargo --version
- name: Get required packages
run: sudo apt-get update && sudo apt-get install libsensors-dev libssl-dev libpulse-dev libnotmuch-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Generate docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --all-features --no-deps
- name: Create index.html
run: echo "<meta http-equiv=\"Refresh\" content=\"0; url='/i3status-rust/i3status_rs'\" />" > target/doc/index.html
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: target/doc # The folder the action should deploy.