52 lines
1.2 KiB
YAML
Raw Normal View History

2025-03-08 15:51:19 +01:00
name: Website
on:
push:
2024-07-07 12:12:05 +02:00
branches: [main]
schedule:
- cron: '@daily'
workflow_dispatch:
defaults:
run:
2024-07-07 12:12:05 +02:00
working-directory: /opt/runner/workdir/gcg-website-main
jobs:
prod-build:
name: Produktivumgebung
if: gitea.repository == 'gcg/gcg-website'
runs-on: act-runner-user
steps:
- name: Pull
run: |
git fetch --all
2024-07-07 12:12:05 +02:00
git reset --hard origin/main
2024-12-28 12:09:33 +01:00
git lfs pull
- name: Build
run: |
rm -rf public
hugo --minify --gc --baseURL "https://cantorgymnasium.de/"
- name: Deploy
run: |
cd public
pagefind_extended --site=.
rsync -azr --delete ./ /opt/data/webdata/gcg-website/
test-build:
name: Testumgebung
if: gitea.repository == 'gcg/gcg-website'
runs-on: act-runner-user
steps:
- name: Pull
run: |
git fetch --all
2024-07-07 12:12:05 +02:00
git reset --hard origin/main
2024-12-28 12:09:33 +01:00
git lfs pull
- name: Build
run: |
rm -rf test
hugo --minify --gc --baseURL "https://test.cantorgymnasium.de/" --buildDrafts --buildFuture -d test
- name: Deploy
run: |
cd test
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/