Skip to content

fix deploy

fix deploy #4

Workflow file for this run

name: Deploy documentation
on:
push:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: "https://ringsaturn.github.io/tzf-rs"
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
- run: cargo +nightly doc --no-deps
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "./target/doc"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3