Migrace CI na Gitea Actions
Some checks failed
Build / build (push) Failing after 2m23s
Build / deploy (push) Has been skipped

This commit is contained in:
Emil Miler 2023-12-22 21:08:35 +01:00
parent d68d8adceb
commit eefb668f69
2 changed files with 49 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,49 @@
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: Save public directory to workspace
uses: actions/upload-artifact@v2
with:
name: public
path: public
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download public directory from workspace
uses: actions/download-artifact@v2
with:
name: public
path: public
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: receptty.org
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
rsync -r --delete-after public/* /srv/www/receptty.org/