Compare commits
1 Commits
1857592686
...
38e7acae99
Author | SHA1 | Date | |
---|---|---|---|
38e7acae99 |
22
.drone.yml
Normal file
22
.drone.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: ghcr.io/getzola/zola:v0.17.2
|
||||||
|
entrypoint: ["/bin/zola"]
|
||||||
|
command: ["build"]
|
||||||
|
|
||||||
|
- name: deploy
|
||||||
|
image: drillster/drone-rsync
|
||||||
|
settings:
|
||||||
|
hosts: ["0x45.cz"]
|
||||||
|
user: drone
|
||||||
|
source: public/*
|
||||||
|
target: /srv/www/receptty.org
|
||||||
|
recursive: true
|
||||||
|
delete: true
|
||||||
|
environment:
|
||||||
|
RSYNC_KEY:
|
||||||
|
from_secret: rsync_private_key
|
@ -14,16 +14,7 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build
|
- name: Build Zola website
|
||||||
uses: docker://ghcr.io/getzola/zola:v0.18.0
|
uses: docker://ghcr.io/getzola/zola:v0.18.0
|
||||||
with:
|
with:
|
||||||
args: build
|
args: build
|
||||||
|
|
||||||
- name: Deploy
|
|
||||||
uses: appleboy/ssh-action@master
|
|
||||||
with:
|
|
||||||
host: receptty.org
|
|
||||||
username: ${{ secrets.REMOTE_USERNAME }}
|
|
||||||
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
||||||
script: |
|
|
||||||
rsync -avz --delete-after public/ /srv/www/receptty.org/
|
|
||||||
|
Loading…
Reference in New Issue
Block a user