This commit is contained in:
parent
d68d8adceb
commit
aa632ef550
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
|
|
37
.gitea/workflows/deploy.yaml
Normal file
37
.gitea/workflows/deploy.yaml
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- actions
|
||||||
|
|
||||||
|
env:
|
||||||
|
ZOLA_VERSION: "0.18.0"
|
||||||
|
HOST: "receptty.org"
|
||||||
|
HOST_DIR: "/srv/www/receptty.org/"
|
||||||
|
USERNAME: ${{ secrets.SSH_USERNAME }}
|
||||||
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Zola
|
||||||
|
run: |
|
||||||
|
wget https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz
|
||||||
|
tar -xvzf *.tar.gz
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: ./zola build
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
run: |
|
||||||
|
apt update -assume-yes && apt-get install --assume-yes --no-install-recommends rsync
|
||||||
|
eval "$(ssh-agent -s)"
|
||||||
|
ssh-add - <<< "${SSH_PRIVATE_KEY}"
|
||||||
|
rsync -r --delete-after public/* ${USERNAME}@${HOST}:${HOST_DIR}
|
Loading…
Reference in New Issue
Block a user