Compress blog into tar.gz before upload
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
e97e667c1f
commit
c7dc7e05be
12
.drone.yml
12
.drone.yml
@ -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
|
||||
|
Reference in New Issue
Block a user