Skip to content

fix: adjust liboqs pkgconfig version detection to new scheme (#246) #195

fix: adjust liboqs pkgconfig version detection to new scheme (#246)

fix: adjust liboqs pkgconfig version detection to new scheme (#246) #195

Workflow file for this run

on:
push:
branches:
- 'main'
name: Publish documentation
jobs:
docs:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
env:
# 20 MiB stack
RUST_MIN_STACK: 20971520
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions-rs/toolchain@v1.0.7
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: actions-rs/cargo@v1.0.3
with:
command: doc
args: --all --all-features
- name: Deploy documentation
if: success()
uses: crazy-max/ghaction-github-pages@v4.0.0
with:
build_dir: target/doc
target_branch: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# vim: set ft=yaml ts=2 sw=2 tw=0 et :