receptty.org/.gitea/workflows/deploy.yaml
Emil Miler 5cae1670e4
Some checks failed
Build / build (push) Failing after 19s
Migrace CI na Gitea Actions
2024-01-06 12:03:31 +01:00

36 lines
773 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/