From 8463a62d2544075e6efa4938b221452c3c6bf315 Mon Sep 17 00:00:00 2001 From: daudix-UFO Date: Mon, 25 Dec 2023 04:25:15 +0300 Subject: [PATCH] fix: Quote the asterisk in the CI --- .woodpecker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index ef53d21..b34c924 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -33,13 +33,13 @@ steps: - git clone -b pages https://$CODEBERG_TOKEN@codeberg.org/$CI_REPO.git $CI_REPO_NAME # Remove old files from repository - ls # Debug - - git -C "$CI_REPO_NAME" rm -r * + - git -C $CI_REPO_NAME rm -r "*" - ls # Debug # Copy build step output to repository folder - - cp -ar "$ZOLA_OUTPUT/." "$CI_REPO_NAME/" + - cp -ar $ZOLA_OUTPUT/. $CI_REPO_NAME/ - ls # Debug # Commit and push all static files with pipeline started timestamp - - cd "$CI_REPO_NAME" + - cd $CI_REPO_NAME - git add . - git commit -m "Woodpecker CI ${CI_COMMIT_SHA} [SKIP CI]" - git push