gcg-website/.gitea/workflows/dev.yaml
Denys Konovalov 95cf16f6d2
All checks were successful
website-main / prod-build (push) Successful in 44s
website-main / test-build (push) Successful in 25s
website-main / auto-rebuild (push) Has been skipped
switch to pagefind 1.0
2023-09-23 18:01:28 +02:00

34 lines
857 B
YAML

name: website-dev
on:
push:
branches:
- dev
concurrency:
group: ${{ gitea.workflow }}-${{ gitea.ref }}
cancel-in-progress: true
jobs:
dev-build:
if: gitea.repository == 'gcg/gcg-website'
runs-on: act-runner-user
timeout-minutes: 5
steps:
- name: clone
uses: actions/checkout@v3
- name: build
run: hugo --minify --gc --baseURL "https://dev.cantorgymnasium.de/" --buildDrafts --buildFuture -d dev
- name: deploy
run: |
cd dev
pagefind_extended --site=.
rsync -azr --delete ./ /opt/data/webdata/gcg-website-dev/
- name: notification
uses: actions/telegram-action@main
if: always()
with:
chat_id: ${{ secrets.TG_CHAT_ID }}
token: ${{ secrets.TG_TOKEN }}
include_commit_info: false