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 cbb416b commit e3998b2Copy full SHA for e3998b2
.github/workflows/docs.yml
@@ -13,14 +13,18 @@ jobs:
13
# The type of runner that the job will run on
14
runs-on: ubuntu-latest
15
steps:
16
+ - uses: actions/setup-python@v4
17
+ with:
18
+ python-version: '3.10'
19
- name: Checkout
20
uses: actions/checkout@v4
21
with:
22
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
23
- name: Install dependencies
24
run: |
25
sudo apt-get update;
- sudo apt-get install pandoc
26
+ sudo apt-get install pandoc;
27
+ pip install -e .
28
- name: Build and Commit
29
uses: sphinx-notes/pages@v2
30
0 commit comments