Skip to content

Commit b2351a9

Browse files
committed
add academy-update make target to update academy-theme
Signed-off-by: Siddhi sahu <[email protected]>
1 parent 95a66d8 commit b2351a9

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ include .github/build/Makefile-show-help.mk
1818
#----------------------------------------------------------------------------
1919
# Academy
2020
# ---------------------------------------------------------------------------
21-
.PHONY: academy-setup academy-dev academy-staging academy-prod update-module
21+
.PHONY: academy-setup academy-dev academy-staging academy-prod update-module academy-update
2222

2323
## Install site dependencies
2424
academy-setup:
@@ -55,3 +55,7 @@ sync-with-cloud:
5555
rm -rf ../meshery-cloud/academy
5656
mkdir -p ../meshery-cloud/academy
5757
rsync -av --delete public/ ../meshery-cloud/academy/
58+
59+
## Update the academy-theme package to latest version
60+
academy-update:
61+
hugo mod get -u

go.mod

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ module github.com/layer5io/academy
33
go 1.12
44

55
require (
6+
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3 // indirect
7+
github.com/google/docsy v0.12.0 // indirect
68
github.com/layer5io/academy-theme v0.1.15 // indirect
79
github.com/layer5io/exoscale-academy v0.3.2 // indirect
8-
github.com/layer5io/layer5-academy v0.1.6 // indirect
10+
github.com/layer5io/layer5-academy v0.1.7 // indirect
11+
github.com/twbs/bootstrap v5.3.7+incompatible // indirect
912
)

go.sum

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3 h1:/iluJkJiyTAdnqrw3Yi9rH2HNHhrrtCmj8VJe7I6o3w=
12
github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
3+
github.com/google/docsy v0.12.0 h1:CddZKL39YyJzawr8GTVaakvcUTCJRAAYdz7W0qfZ2P4=
24
github.com/google/docsy v0.12.0/go.mod h1:1bioDqA493neyFesaTvQ9reV0V2vYy+xUAnlnz7+miM=
35
github.com/layer5io/academy-theme v0.1.10/go.mod h1:kAidN16xIX6Dx2TBz7y0u3DeU8UnfUcoQZ/rVogXN80=
46
github.com/layer5io/academy-theme v0.1.15 h1:cDIOgNOM8qF6o4HVLnQnhyWBpTaaVvUz+ANJzwcTfLA=
@@ -8,5 +10,8 @@ github.com/layer5io/exoscale-academy v0.3.2/go.mod h1:1S4qs8cy686HvTkvvZt+yhyi3E
810
github.com/layer5io/hugo-academy-theme v0.0.0-20250715053027-36f46b5c4741/go.mod h1:Kp2xgJUAqGztDN/j6T30ApwSaK1Yxs1IvrSgOoRFKnI=
911
github.com/layer5io/layer5-academy v0.1.6 h1:imcz2Wsjvv0Dl++P5mGeMF1n9AaIP5qdHtxr7x9Imt4=
1012
github.com/layer5io/layer5-academy v0.1.6/go.mod h1:43Vsb+x/qWod1ukqqHZYVfrvLxbCCBwusMZpzouVs/U=
13+
github.com/layer5io/layer5-academy v0.1.7 h1:PB0Q0rfYiJNe44Plcn098ELtKH9hO5V4mOWlWUH/+7I=
14+
github.com/layer5io/layer5-academy v0.1.7/go.mod h1:mxithFlM+rYS6Dfqu95OyCpLN0NJz8Rmg50x8zRzEuw=
1115
github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
16+
github.com/twbs/bootstrap v5.3.7+incompatible h1:ea1W8TOWZFkqSK2M0McpgzLiUQVru3bz8aHb0j/XtuM=
1217
github.com/twbs/bootstrap v5.3.7+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=

0 commit comments

Comments
 (0)