Skip to content

Commit 6a8eb9b

Browse files
robtaylormooperd
authored andcommitted
Revert broken doc generation
1 parent 57043c6 commit 6a8eb9b

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
1+
# .github/workflows/deploy.yml
12
name: Deploy
23
on:
34
push:
45
branches:
56
- main
67
jobs:
7-
build-docs:
8-
uses: ./.github/workflows/build-docs.yml
9-
secrets:
10-
gh_token: ${{ github.token }}
11-
12-
deploy-internal:
8+
deploy:
139
runs-on: ubuntu-latest
1410
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Setup PDM
14+
uses: pdm-project/setup-pdm@v4
15+
with:
16+
python-version: 3.12
17+
cache: true
18+
19+
- name: Install dependencies
20+
run: pdm install
21+
22+
- name: Build docs
23+
run: pdm docs
1524

1625
- uses: JamesIves/github-pages-deploy-action@v4
1726
with:

0 commit comments

Comments
 (0)