Migrace CI na Gitea Actions
Build / build (push) Successful in 1m0s Details

This commit is contained in:
Emil Miler 2023-12-22 21:08:35 +01:00
parent d68d8adceb
commit 14f537211a
2 changed files with 45 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,45 @@
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)"
# echo "${SSH_PRIVATE_KEY}" | tr -d '\r' | ssh-add -
# echo ${{ secrets.SSH_USERNAME }}
# ssh -vvv ${USERNAME}@${HOST} "echo Hello from the other side!"
# rsync -r --delete-after public/* ${USERNAME}@${HOST}:${HOST_DIR}
apt update -y && apt-get install -y --no-install-recommends rsync
mkdir -p ~/.ssh
echo "${SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo -e "Host ${HOST}\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
rsync -rv --delete-after -e "ssh -i ~/.ssh/id_rsa -o StrictHostKeyChecking=no" public/* ${USERNAME}@${HOST}:${HOST_DIR}