File tree 13 files changed +55
-32
lines changed
13 files changed +55
-32
lines changed Original file line number Diff line number Diff line change 17
17
- name : Setup Hugo
18
18
uses : peaceiris/actions-hugo@v2
19
19
with :
20
- hugo-version : ' 0.101 .0'
20
+ hugo-version : ' 0.110 .0'
21
21
extended : true
22
22
- name : Build
23
23
run : chmod +x build-site.sh && ./build-site.sh
Original file line number Diff line number Diff line change 17
17
- name : Setup Hugo
18
18
uses : peaceiris/actions-hugo@v2
19
19
with :
20
- hugo-version : ' 0.101 .0'
20
+ hugo-version : ' 0.110 .0'
21
21
extended : true
22
22
- name : Build
23
23
run : chmod +x build-site.sh && ./build-site.sh
Original file line number Diff line number Diff line change 1
- [submodule "website_and_docs/themes/docsy "]
2
- path = website_and_docs/themes/docsy
3
- url = https://github.com/google/docsy.git
Original file line number Diff line number Diff line change 1
1
tasks :
2
2
- name : Install Hugo, init submodules and start website
3
3
init : |
4
- curl -LO https://github.com/gohugoio/hugo/releases/download/v0.101.0/hugo_extended_0.101 .0_Linux-64bit.deb && \
5
- sudo dpkg -i hugo_extended_0.101 .0_Linux-64bit.deb && \
4
+ curl -LO https://github.com/gohugoio/hugo/releases/download/v0.101.0/hugo_extended_0.110 .0_Linux-64bit.deb && \
5
+ sudo dpkg -i hugo_extended_0.110 .0_Linux-64bit.deb && \
6
6
sudo rm hugo_extended_0.101.0_Linux-64bit.deb
7
7
git submodule update --init --recursive
8
8
command : |
Original file line number Diff line number Diff line change 1
1
[build ]
2
- publish = " website_and_docs/public"
3
- command = " chmod +x build-site.sh && ./build-site.sh"
2
+ base = " website_and_docs/"
3
+ publish = " public"
4
+ command = " hugo"
4
5
5
6
[context .production .environment ]
6
- HUGO_VERSION = " 0.101.0"
7
+ NODE_VERSION = " 18.14.1"
8
+ HUGO_VERSION = " 0.110.0"
9
+ GO_VERSION = " 1.20.1"
7
10
HUGO_ENV = " production"
8
11
9
12
[context .deploy-preview ]
10
- command = " chmod +x build-site.sh && ./build-site.sh "
13
+ command = " hugo "
11
14
12
15
[context .deploy-preview .environment ]
13
- HUGO_VERSION = " 0.101.0"
16
+ NODE_VERSION = " 18.14.1"
17
+ HUGO_VERSION = " 0.110.0"
18
+ GO_VERSION = " 1.20.1"
14
19
15
20
[context .branch-deploy ]
16
- command = " chmod +x build-site.sh && ./build-site.sh "
21
+ command = " hugo --minify "
17
22
18
23
[context .branch-deploy .environment ]
19
- HUGO_VERSION = " 0.101.0"
24
+ NODE_VERSION = " 18.14.1"
25
+ HUGO_VERSION = " 0.110.0"
26
+ GO_VERSION = " 1.20.1"
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ /*
2
+ Import of additional project style files.
3
+ */
4
+
5
+ @import " backgrounds" ;
6
+ @import " badges" ;
7
+ @import " colors_project" ;
8
+ @import " images" ;
9
+ @import " links" ;
10
+ @import " logo" ;
11
+ @import " screen" ;
12
+ @import " tabs" ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ module github.com/SeleniumHQseleniumhq.github.io
2
+
3
+ go 1.20
4
+
5
+ require github.com/google/docsy v0.6.0 // indirect
Original file line number Diff line number Diff line change
1
+ github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f /go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo =
2
+ github.com/google/docsy v0.6.0 h1:43bVF18t2JihAamelQjjGzx1vO2ljCilVrBgetCA8oI =
3
+ github.com/google/docsy v0.6.0 /go.mod h1:VKKLqD8PQ7AglJc98yBorATfW7GrNVsn0kGXVYF6G+M =
4
+ github.com/google/docsy/dependencies v0.6.0 /go.mod h1:EDGc2znMbGUw0RW5kWwy2oGgLt0iVXBmoq4UOqstuNE =
5
+ github.com/twbs/bootstrap v4.6.2+incompatible /go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0 =
Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ title = "Selenium"
3
3
4
4
enableRobotsTXT = true
5
5
6
- # Hugo allows theme composition (and inheritance). The precedence is from left to right.
7
- theme = [" docsy" ]
8
-
9
6
# Will give values to .Lastmod etc.
10
7
enableGitInfo = true
11
8
# ignoreErrors = ["error-remote-getjson"]
@@ -79,7 +76,20 @@ description = "Selenium automates browsers. That's it!"
79
76
languageName =" Other"
80
77
weight = 5
81
78
82
-
79
+ # Import docsy theme as module
80
+ [module ]
81
+ proxy = " direct"
82
+ # uncomment line below for temporary local development of module
83
+ # replacements = "github.com/google/docsy -> ../../docsy"
84
+ [module .hugoVersion ]
85
+ extended = true
86
+ min = " 0.73.0"
87
+ [[module .imports ]]
88
+ path = " github.com/google/docsy"
89
+ disable = false
90
+ [[module .imports ]]
91
+ path = " github.com/google/docsy/dependencies"
92
+ disable = false
83
93
84
94
[markup ]
85
95
[markup .goldmark ]
Original file line number Diff line number Diff line change 11
11
"devDependencies" : {
12
12
"autoprefixer" : " ^10.2.6" ,
13
13
"postcss" : " ^8.3.6" ,
14
- "postcss-cli" : " ^8.3.1 "
14
+ "postcss-cli" : " ^10.1.0 "
15
15
}
16
16
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments