Emil Miler 4b153b9e55
Some checks failed
Build / build (push) Failing after 12s
Migrace CI na Gitea Actions
2024-01-06 12:04:23 +01:00

36 lines
769 B
YAML

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/