Skip to content

merge soberdocs into vinegarhq.org (#143) #242

merge soberdocs into vinegarhq.org (#143)

merge soberdocs into vinegarhq.org (#143) #242

Workflow file for this run

name: Deploy
on: [push, workflow_dispatch]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Rust
run: rustup update stable && rustup default stable
- name: Install mdbook
uses: taiki-e/install-action@mdbook
- name: Install mdbook-linkcheck
uses: taiki-e/install-action@mdbook-linkcheck
- name: Build Website
run: mdbook build
- name: Upload Website
uses: actions/upload-pages-artifact@v3
with:
path: ./book
- name: Deploy GitHub Pages
uses: actions/deploy-pages@v4