mirror of
https://github.com/loviuz/loviuz-website.git
synced 2024-12-23 06:38:51 +01:00
34 lines
637 B
YAML
34 lines
637 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
schedule:
|
|
- cron: '0 8 * * *'
|
|
|
|
jobs:
|
|
Deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Setup Hugo
|
|
uses: peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: '0.100.1'
|
|
|
|
- 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 }}
|