Skip to content

Merge pull request #455 from twitch-rs/chore/eventsub-fix-or-mini-ref… #357

Merge pull request #455 from twitch-rs/chore/eventsub-fix-or-mini-ref…

Merge pull request #455 from twitch-rs/chore/eventsub-fix-or-mini-ref… #357

Workflow file for this run

name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- uses: Swatinem/rust-cache@v2
- name: build docs
run: cargo xtask doc
- name: move index.html
run: cp ./docs/index.html ./target/doc/index.html
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc