From bac803832f973e25633b3d4e675cc2a0d2b62a88 Mon Sep 17 00:00:00 2001 From: Rohail Taimour Date: Wed, 15 Nov 2023 10:08:41 +0100 Subject: [PATCH] typo --- .github/workflows/update-cv.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-cv.yaml b/.github/workflows/update-cv.yaml index c54d9b8..1a8694b 100644 --- a/.github/workflows/update-cv.yaml +++ b/.github/workflows/update-cv.yaml @@ -26,12 +26,12 @@ jobs: unzip resume.zip -d resume RESUME_NAME=$(ls resume/*.pdf) RESUME_NAME=${RESUME_NAME##*/} - cp -f "resume/$RESUME_NAME" static/upload/resume.pdf + cp -f "resume/$RESUME_NAME" static/uploads/resume.pdf - name: Commit and Push CV Update run: | git config --global user.name 'GitHub Actions' git config --global user.email 'actions@github.com' - git add static/upload/resume.pdf + git add static/uploads/resume.pdf git commit -m 'Update CV to latest version' git push