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
commands:
- 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
image: appleboy/drone-scp
@ -23,7 +28,6 @@ steps:
username: droneci
key:
from_secret: SSH_KEY
target: /tmp/
target: /tmp/blog/
rm: true
source:
- blog/
source: deploy.tar.gz