58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
name: schuelerzeitung-prod
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: /opt/runner/workdir/schuelerzeitung-main
|
|
|
|
jobs:
|
|
prod-build:
|
|
if: gitea.repository == 'gcg/schuelerzeitung'
|
|
runs-on: act-runner-user
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Pull
|
|
run: |
|
|
git fetch --all
|
|
git reset --hard origin/main
|
|
- name: Build
|
|
run: |
|
|
rm -rf public
|
|
hugo --minify --gc --baseURL "https://schuelerzeitung-gcg.de/"
|
|
- name: Deploy
|
|
run: |
|
|
cd public
|
|
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung/
|
|
- name: Telegram notification
|
|
uses: actions/telegram-action@main
|
|
if: always()
|
|
with:
|
|
chat_id: ${{ secrets.TG_CHAT_ID }}
|
|
token: ${{ secrets.TG_TOKEN }}
|
|
|
|
- name: Discord notification
|
|
uses: https://github.com/PingChunChung/actions-discord-notifier@main
|
|
with:
|
|
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
|
|
test-build:
|
|
if: gitea.repository == 'gcg/schuelerzeitung'
|
|
runs-on: act-runner-user
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: pull
|
|
run: |
|
|
git fetch --all
|
|
git reset --hard origin/main
|
|
- name: build
|
|
run: |
|
|
rm -rf test
|
|
hugo --minify --gc --baseURL "https://test.schuelerzeitung-gcg.de/" --buildDrafts --buildFuture -d test
|
|
- name: deploy
|
|
run: |
|
|
cd test
|
|
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung-test/ |