Compress blog into tar.gz before upload
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
BBaoVanC 2021-04-14 00:37:31 -05:00
parent e97e667c1f
commit c7dc7e05be
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 8 additions and 4 deletions

View File

@ -13,7 +13,12 @@ steps:
image: mapitman/docker-hugo image: mapitman/docker-hugo
commands: commands:
- hugo version - hugo version
- hugo --minify -d blog/ - hugo --minify
- name: Compress public folder
image: alpine/latest
commands:
- tar -czvf deploy.tar.gz public/*
- name: Upload files - name: Upload files
image: appleboy/drone-scp image: appleboy/drone-scp
@ -23,7 +28,6 @@ steps:
username: droneci username: droneci
key: key:
from_secret: SSH_KEY from_secret: SSH_KEY
target: /tmp/ target: /tmp/blog/
rm: true rm: true
source: source: deploy.tar.gz
- blog/