squash: Green CI again?
All checks were successful
build static site / build (pull_request) Successful in 26s
All checks were successful
build static site / build (pull_request) Successful in 26s
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
parent
5491bdb9e8
commit
b562512742
2 changed files with 7 additions and 4 deletions
|
@ -11,6 +11,8 @@ jobs:
|
||||||
image: node:22-bookworm
|
image: node:22-bookworm
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
|
@ -22,9 +24,12 @@ jobs:
|
||||||
hugo-${{ runner.os }}
|
hugo-${{ runner.os }}
|
||||||
hugo
|
hugo
|
||||||
|
|
||||||
- run: make all
|
- run: |
|
||||||
|
git submodule sync
|
||||||
|
rm -rf themes/dot-hugo
|
||||||
|
make all
|
||||||
|
|
||||||
- uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
id: artifact-upload-step
|
id: artifact-upload-step
|
||||||
with:
|
with:
|
||||||
name: site
|
name: site
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -25,7 +25,5 @@ server: submodules $(HUGO_BIN)
|
||||||
@$(HUGO_BIN) server --disableFastRender
|
@$(HUGO_BIN) server --disableFastRender
|
||||||
|
|
||||||
submodules:
|
submodules:
|
||||||
@git submodule sync
|
|
||||||
rm -rf themes/dot-hugo
|
|
||||||
@git submodule init
|
@git submodule init
|
||||||
@git submodule update --recursive --remote
|
@git submodule update --recursive --remote
|
||||||
|
|
Loading…
Reference in a new issue