diff options
| author | CaptainJack2491 <jayrupnakawala@gmail.com> | 2026-07-07 15:36:19 +0100 |
|---|---|---|
| committer | CaptainJack2491 <jayrupnakawala@gmail.com> | 2026-07-07 15:36:19 +0100 |
| commit | 80f87fb161490c4fb915c14b20ed074699a166e8 (patch) | |
| tree | eb73291ffd6e671347b9126e92400987dbaa8547 /deploy.sh | |
| parent | 2b39d686d9f5c33ecf881b214fb43f7f19d91db2 (diff) | |
move external dependencies into assets/ so repo is self-contained
Diffstat (limited to 'deploy.sh')
| -rwxr-xr-x | deploy.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,10 +20,14 @@ find . -name "*.qmd" -not -path "./.*" -not -path "./public/*" | while read -r f done # 4. Add cv -mkdir public/cv +mkdir -p public/cv cp cv/index.pdf public/cv.pdf cp cv/index.txt public/cv.txt +# 5. Add assets (static files bundled in the repo) +cp assets/dissertation.pdf public/dissertation.pdf +cp assets/public_key public/public_key + echo "Pushing to vps" rsync -avz --delete public/ jayrup.me:~/homepage/public/ |
