Skip to content

Add advisory for sequoia-openpgp (#1696) #889

Add advisory for sequoia-openpgp (#1696)

Add advisory for sequoia-openpgp (#1696) #889

Workflow file for this run

name: Publish Web
on:
push:
branches: main
jobs:
publish-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: gh-pages
- uses: actions/cache@v3
with:
path: ~/.cargo/bin
key: rustsec-admin-v0.8.5
- run: |
VERSION="0.8.5"
if ! ( rustsec-admin --version | grep -q "$VERSION" ); then
cargo install rustsec-admin --force --vers "$VERSION"
fi
rustsec-admin web .
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Update gh-pages" || true
git push || true