Skip to content

build(deps): bump clap from 4.5.56 to 4.5.58 #747

build(deps): bump clap from 4.5.56 to 4.5.58

build(deps): bump clap from 4.5.56 to 4.5.58 #747

Workflow file for this run

name: docs
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: --cfg docsrs -Zunstable-options --generate-link-to-definition
DOCS_RS: 1
steps:
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: doc
args: >
-p oo7
--no-deps
--features unstable
- name: Fix permissions
run: |
chmod -c -R +rX "target/doc/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload docs artifact
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: actions/upload-artifact@v6
with:
name: docs-reports
path: ./target/doc/
retention-days: 30