File tree Expand file tree Collapse file tree 5 files changed +21
-5
lines changed Expand file tree Collapse file tree 5 files changed +21
-5
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ concurrency:
27
27
jobs :
28
28
deploy-branch :
29
29
runs-on : ubuntu-latest
30
- container : tarantool/doc-builder:fat-4.1
30
+ container : tarantool/doc-builder:fat-4.3
31
31
env :
32
32
AWS_ACCESS_KEY_ID : ${{secrets.AWS_ACCESS_KEY_ID}}
33
33
AWS_SECRET_ACCESS_KEY : ${{secrets.AWS_SECRET_ACCESS_KEY}}
38
38
TARANTOOL_UPDATE_URL : ${{secrets.TARANTOOL_DEVELOP_UPDATE_URL}}
39
39
VKTEAMS_BOT_TOKEN : ${{secrets.VKTEAMS_TARANTOOLBOT_TOKEN}}
40
40
steps :
41
+ - name : Prevent dubious ownership
42
+ id : add-safe-directory
43
+ run : git config --global --add safe.directory '*'
44
+
41
45
- uses : actions/checkout@v3
42
46
id : checkout
43
47
with :
Original file line number Diff line number Diff line change 28
28
jobs :
29
29
custom-deploy-branch :
30
30
runs-on : ubuntu-latest
31
- container : tarantool/doc-builder:fat-4.1
31
+ container : tarantool/doc-builder:fat-4.3
32
32
env :
33
33
AWS_ACCESS_KEY_ID : ${{secrets.AWS_ACCESS_KEY_ID}}
34
34
AWS_SECRET_ACCESS_KEY : ${{secrets.AWS_SECRET_ACCESS_KEY}}
39
39
TARANTOOL_UPDATE_URL : ${{secrets.TARANTOOL_DEVELOP_UPDATE_URL}}
40
40
VKTEAMS_BOT_TOKEN : ${{secrets.VKTEAMS_TARANTOOLBOT_TOKEN}}
41
41
steps :
42
+ - name : Prevent dubious ownership
43
+ id : add-safe-directory
44
+ run : git config --global --add safe.directory '*'
45
+
42
46
- uses : actions/checkout@v3
43
47
id : checkout
44
48
with :
Original file line number Diff line number Diff line change 10
10
jobs :
11
11
deploy :
12
12
runs-on : ubuntu-latest
13
- container : tarantool/doc-builder:fat-4.1
13
+ container : tarantool/doc-builder:fat-4.3
14
14
env :
15
15
AWS_ACCESS_KEY_ID : ${{secrets.AWS_ACCESS_KEY_ID}}
16
16
AWS_SECRET_ACCESS_KEY : ${{secrets.AWS_SECRET_ACCESS_KEY}}
22
22
DEPLOYMENT_NAME : latest
23
23
VKTEAMS_BOT_TOKEN : ${{secrets.VKTEAMS_TARANTOOLBOT_TOKEN}}
24
24
steps :
25
+ - name : Prevent dubious ownership
26
+ id : add-safe-directory
27
+ run : git config --global --add safe.directory '*'
28
+
25
29
- uses : actions/checkout@v3
26
30
id : checkout
27
31
with :
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ and refresh the browser page.
89
89
90
90
.. code-block :: bash
91
91
92
- docker run --rm -it -p 8000:8000 -v $( pwd) :/doc tarantool/doc-builder:fat-4.1 sh -c " make autobuild"
92
+ docker run --rm -it -p 8000:8000 -v $( pwd) :/doc tarantool/doc-builder:fat-4.3 sh -c " make autobuild"
93
93
94
94
First build will take some time.
95
95
When it's done, open `127.0.0.1:8000 <http://127.0.0.1:8000 >`_ in the browser.
Original file line number Diff line number Diff line change 16
16
master_doc = 'index'
17
17
18
18
extensions = [
19
+ 'myst_parser' ,
19
20
'sphinx.ext.todo' ,
20
21
'sphinx.ext.imgmath' ,
21
22
'sphinx.ext.ifconfig' ,
50
51
imgmath_image_format = 'svg'
51
52
52
53
primary_domain = 'lua'
53
- source_suffix = '.rst'
54
+ source_suffix = {
55
+ '.rst' : 'restructuredtext' ,
56
+ '.md' : 'markdown' ,
57
+ }
54
58
55
59
project = u'Tarantool'
56
60
You can’t perform that action at this time.
0 commit comments