1
0

Merge pull request 'dev' (#11) from fr/com_pkmples.cz:dev into dev

Reviewed-on: fofrweb/com_pkmples.cz#11
This commit is contained in:
Filip Rojek 2023-12-07 20:05:41 +01:00
commit c6fc9b40d4
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,21 @@
name: Build Zola Website
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Zola
uses: taiki-e/install-action@v2
with:
tool: zola@0.17.2
- name: Build Zola Website
run: |
zola build

View File

@ -0,0 +1,36 @@
name: Build and Deploy Zola Website
on:
push:
branches:
- master
- dev
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Zola
uses: taiki-e/install-action@v2
with:
tool: zola@0.17.2
- name: Build Zola Website
run: |
zola build
- name: Deploy to server
uses: AEnterprise/rsync-deploy@v1.0.2
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
ARGS: "-e -c -r --delete"
SERVER_PORT: 22
FOLDER: "./public/"
SERVER_IP: ${{ secrets.SERVER_IP }}
USERNAME: ${{ secrets.USERNAME }}
SERVER_DESTINATION: ${{ if(github.ref == 'refs/heads/master') }}/srv/www/cz/pkmples/www${{ else }}/srv/www/cz/pkmples/dev${{ endif }