From 4b153b9e558e2fd021d0b4bbe3fed412123c7cc6 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Fri, 22 Dec 2023 21:08:35 +0100 Subject: [PATCH] Migrace CI na Gitea Actions --- .drone.yml | 22 ---------------------- .gitea/workflows/deploy.yaml | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 22 deletions(-) delete mode 100644 .drone.yml create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 8b2f682..0000000 --- a/.drone.yml +++ /dev/null @@ -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 diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..48a475f --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,35 @@ +name: Build + +on: + push: + branches: + - master + - actions + +variables: + ZOLA_VERSION: "0.18.0" + +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 + 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/