From d1b2aad69edfb8801c55bd3df38bff0b5f4e1ebd Mon Sep 17 00:00:00 2001 From: Rimas Kudelis Date: Tue, 17 Jun 2025 09:08:15 +0300 Subject: [PATCH] content: Fix Codeberg deployment article --- content/en/host-and-deploy/host-on-codeberg-pages.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/en/host-and-deploy/host-on-codeberg-pages.md b/content/en/host-and-deploy/host-on-codeberg-pages.md index 5b8ddb424..22aba8afd 100644 --- a/content/en/host-and-deploy/host-on-codeberg-pages.md +++ b/content/en/host-and-deploy/host-on-codeberg-pages.md @@ -240,11 +240,11 @@ jobs: name: Generated files - name: Commit and push the website run: | - git config user.email codeberg-ci - && git config user.name "Codeberg CI" - && git add -v . - && git commit -v --allow-empty --message "Codeberg build for ${GITHUB_SHA}" - && git push -v origin ${{ vars.TARGET_BRANCH }} + git config user.email codeberg-ci && \ + git config user.name "Codeberg CI" && \ + git add -v . && \ + git commit -v --allow-empty --message "Codeberg build for ${GITHUB_SHA}" && \ + git push -v origin ${{ vars.TARGET_BRANCH }} ``` Once you commit one of the two files to your website source repository, you should see your first automated build firing up pretty soon. You can also trigger it manually by navigating to the **Actions** section of your repository web page, choosing **hugo.yaml** on the left and clicking on **Run workflow**.