This commit is contained in:
parent
03f2f163d9
commit
1857592686
22
.drone.yml
22
.drone.yml
@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
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
|
|
29
.gitea/workflows/deploy.yaml
Normal file
29
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- actions
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
uses: docker://ghcr.io/getzola/zola:v0.18.0
|
||||||
|
with:
|
||||||
|
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