From f7a44f3b1bc0a2d8f31c2d732ef1f3df333c33d7 Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 30 Sep 2025 14:14:52 +0200 Subject: [PATCH] Interverting moves --- .woodpecker/build-deploy.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.woodpecker/build-deploy.yaml b/.woodpecker/build-deploy.yaml index 32e53fc..c3730fb 100644 --- a/.woodpecker/build-deploy.yaml +++ b/.woodpecker/build-deploy.yaml @@ -33,9 +33,6 @@ steps: - git config --global user.email "${CI_COMMIT_AUTHOR_EMAIL:-CI_COMMIT_AUTHOR_EMAIL}" - git config --global user.name "${CI_COMMIT_AUTHOR:-CI Bot}" - # Move the generated PDF to the repository directory - - mv cv.pdf repo/ - # Go to the repository directory - cd repo - pwd @@ -45,6 +42,10 @@ steps: - git checkout --orphan "$PDF_BRANCH" - git reset --hard + + # Move the generated PDF to the repository directory + - mv ../cv.pdf ./ + # Add all generated files to Git - git add -f cv.pdf - git status