Compare commits

...

1 Commits

Author SHA1 Message Date
Emil Miler 824b5c9b81 Migrace CI na Gitea Actions
Build / build (push) Successful in 1m3s Details
2024-01-06 12:48:52 +01:00
2 changed files with 39 additions and 22 deletions

View File

@ -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

View File

@ -0,0 +1,39 @@
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 -y && apt-get install -y --no-install-recommends rsync
eval "$(ssh-agent -s)"
ssh-add - <<< "${SSH_PRIVATE_KEY}"
mkdir -p ~/.ssh/
ssh-keyscan -H ${HOST} >> ~/.ssh/known_hosts
rsync -r --delete-after public/* "${USERNAME}@${HOST}:${HOST_DIR}"