Interverting moves
All checks were successful
ci/woodpecker/push/age-check Pipeline was successful
ci/woodpecker/push/build-deploy Pipeline was successful

This commit is contained in:
Louis 2025-09-30 14:14:52 +02:00
parent 8c0e38591e
commit f7a44f3b1b

View file

@ -33,9 +33,6 @@ steps:
- git config --global user.email "${CI_COMMIT_AUTHOR_EMAIL:-CI_COMMIT_AUTHOR_EMAIL}" - git config --global user.email "${CI_COMMIT_AUTHOR_EMAIL:-CI_COMMIT_AUTHOR_EMAIL}"
- git config --global user.name "${CI_COMMIT_AUTHOR:-CI Bot}" - 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 # Go to the repository directory
- cd repo - cd repo
- pwd - pwd
@ -45,6 +42,10 @@ steps:
- git checkout --orphan "$PDF_BRANCH" - git checkout --orphan "$PDF_BRANCH"
- git reset --hard - git reset --hard
# Move the generated PDF to the repository directory
- mv ../cv.pdf ./
# Add all generated files to Git # Add all generated files to Git
- git add -f cv.pdf - git add -f cv.pdf
- git status - git status