mirror of
https://github.com/loviuz/loviuz-website.git
synced 2025-01-07 05:53:08 +01:00
34 lines
632 B
YAML
34 lines
632 B
YAML
|
name: Publish
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
schedule:
|
||
|
- cron: '0 8 * * *'
|
||
|
|
||
|
jobs:
|
||
|
Deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
|
||
|
- uses: actions/checkout@v1
|
||
|
with:
|
||
|
submodules: true
|
||
|
|
||
|
- name: Setup Hugo
|
||
|
uses: peaceiris/actions-hugo@v2
|
||
|
with:
|
||
|
hugo-version: '0.101.0'
|
||
|
|
||
|
- name: Build
|
||
|
run: hugo -D
|
||
|
|
||
|
- name: Deploy
|
||
|
uses: SamKirkland/FTP-Deploy-Action@3.0.0
|
||
|
with:
|
||
|
ftp-server: ${{ secrets.FTP_HOST }}
|
||
|
ftp-username: ${{ secrets.FTP_USERNAME }}
|
||
|
ftp-password: ${{ secrets.FTP_PASSWORD }}
|
||
|
local-dir: ${{ secrets.FTP_DIRECTORY }}
|