From 6374d737c071ea143457196444d187a53d015437 Mon Sep 17 00:00:00 2001 From: daudix-UFO Date: Thu, 21 Dec 2023 18:53:39 +0300 Subject: [PATCH] chore: Fix CI --- .woodpecker.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index e6a873c..396d14a 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -11,10 +11,11 @@ clone: recursive: true steps: - # Build Zola static files + # Build zola static files build: - image: ghcr.io/getzola/zola:v0.17.2 + image: alpine commands: + - apk add zola - zola build when: event: [ pull_request, push ] @@ -35,7 +36,7 @@ steps: # Commit and push all static files with pipeline started timestamp - cd $CI_REPO_NAME - git add . - - git commit -m "Woodpecker CI ${CI_BUILD_CREATED}" + - git commit -m "Woodpecker CI ${CI_COMMIT_SHA}" - git push when: event: push