Skip to content

Commit d63cfaf

Browse files
committed
fix compile issues
Signed-off-by: Jeeva Kandasamy <jkandasa@gmail.com>
1 parent 2587631 commit d63cfaf

File tree

4 files changed

+191
-335
lines changed

4 files changed

+191
-335
lines changed

.github/workflows/publish_container_images.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v2
14+
with:
15+
submodules: true # Fetch Hugo themes (true OR recursive)
16+
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
1417
- uses: docker/setup-buildx-action@v1
1518
- uses: actions/setup-node@v2
1619
with:

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"author": "Jeeva Kandasamy <jkandasa@gmail.com>",
88
"license": "Apache-2.0",
99
"dependencies": {
10-
"autoprefixer": "^10.2.5",
11-
"postcss": "^8.2.13",
12-
"postcss-cli": "^8.3.1"
10+
"autoprefixer": "^10.4.14",
11+
"postcss": "^8.4.21",
12+
"postcss-cli": "^10.1.0"
1313
}
1414
}

scripts/build.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ git submodule update --init --recursive
55
# get most recent changes of docsy
66
# git submodule update --remote --merge
77

8-
# TODO: version should taken dynamically
9-
cd themes/docsy/ && git checkout v0.6.0
8+
# download dependent for docsy
9+
cd themes/docsy/
10+
yarn install
1011
cd -
1112

1213
# install npm dependencies

0 commit comments

Comments
 (0)