-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 825 Bytes
/
docs.yml
File metadata and controls
36 lines (30 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Documentation
on:
push:
branches:
- main
- develop
workflow_dispatch:
permissions:
contents: write
concurrency:
group: docs
cancel-in-progress: false
jobs:
deploy:
name: "deploy: docs"
runs-on: ubuntu-latest
container: ghcr.io/wphillipmoore/dev-docs:latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install dependencies
run: uv sync --frozen --group docs
- name: Deploy docs
uses: wphillipmoore/standard-actions/actions/docs-deploy@develop
with:
version-command: uv run python -c "from importlib.metadata import version; v=version('pymqrest'); print('.'.join(v.split('.')[:2]))"
mike-command: uv run mike
checkout-common: "true"