We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57043c6 commit 6a8eb9bCopy full SHA for 6a8eb9b
.github/workflows/deploy-docs.yml
@@ -1,17 +1,26 @@
1
+# .github/workflows/deploy.yml
2
name: Deploy
3
on:
4
push:
5
branches:
6
- main
7
jobs:
- build-docs:
8
- uses: ./.github/workflows/build-docs.yml
9
- secrets:
10
- gh_token: ${{ github.token }}
11
-
12
- deploy-internal:
+ deploy:
13
runs-on: ubuntu-latest
14
steps:
+ - uses: actions/checkout@v4
+
+ - name: Setup PDM
+ 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
24
25
- uses: JamesIves/github-pages-deploy-action@v4
26
with:
0 commit comments