Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 (#55) #76

Bump follow-redirects from 1.15.4 to 1.15.6 (#55)

Bump follow-redirects from 1.15.4 to 1.15.6 (#55) #76

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
docs:
name: build rustdocs and put them on github pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- name: Build Documentation
run: cargo doc --all
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc
force_orphan: true