-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (37 loc) · 1.07 KB
/
gh-pages.yml
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
37
38
39
40
41
42
43
44
45
46
47
name: GitHub Pages
on:
push:
branches:
- "master"
paths:
- ".github/workflows/update-docs.ya?ml"
- "mkdocs.ya?ml"
- "poetry.lock"
- "pyproject.toml"
- "docs/**"
env:
SITE_URL: https://upstreamdatainc.github.io/goosebit
permissions:
contents: read
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.13
- name: Install Poetry
run: pip install poetry
- name: Install Dependencies
run: poetry install --no-root --with docs
- name: Deploy website
run: poetry run mkdocs gh-deploy --theme material --force --no-history