1
0
web-semprace/.gitea/workflows/build.yaml

54 lines
1.1 KiB
YAML
Raw Normal View History

2023-12-07 15:39:30 +01:00
name: Build Zola Website
on:
push:
branches:
- master
2023-12-07 17:08:32 +01:00
pull_request:
branches:
- master
2023-12-07 15:39:30 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
2023-12-07 15:39:30 +01:00
2023-12-07 16:00:13 +01:00
- name: Set up Zola
uses: taiki-e/install-action@v2
2023-12-07 15:57:23 +01:00
with:
2023-12-07 16:00:13 +01:00
tool: zola@0.17.2
2023-12-07 15:39:30 +01:00
- name: Build Zola Website
run: |
zola build
2023-12-07 17:26:03 +01:00
test:
runs-on: ubuntu-latest
steps:
- name: list
run: |
echo ${{ github.workspace }}
echo $GITHUB_WORKSPACE
ls $GITHUB_WORKSPACE
2023-12-07 17:08:32 +01:00
deploy:
needs: build
runs-on: ubuntu-latest
if: gitea.event_name == 'push' && gitea.ref == 'refs/heads/master' && success()
steps:
- name: Deploy to server
uses: AEnterprise/rsync-deploy@v1.0.2
env:
2023-12-07 17:14:08 +01:00
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
2023-12-07 17:08:32 +01:00
ARGS: "-e -c -r --delete"
SERVER_PORT: 22
2023-12-07 17:20:41 +01:00
FOLDER: "${{ github.workspace }}"
2023-12-07 17:08:32 +01:00
SERVER_IP: ${{ secrets.SERVER_IP }}
USERNAME: ${{ secrets.USERNAME }}
SERVER_DESTINATION: "/srv/www/cz/pkmples/www"