2023-03-19 09:41:06 +01:00
|
|
|
name: website-dev
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dev-build:
|
|
|
|
if: github.repository == 'gcg/gcg-website' && github.event_name == 'push'
|
|
|
|
runs-on: act-runner-user
|
|
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
|
|
- name: clone
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: setup hugo
|
|
|
|
uses: https://github.com/peaceiris/actions-hugo@v2
|
|
|
|
with:
|
|
|
|
hugo-version: '0.111.2'
|
|
|
|
extended: true
|
|
|
|
|
|
|
|
- name: build
|
|
|
|
run: hugo --minify --gc --baseURL "https://dev.cantorgymnasium.de/" --buildDrafts --buildFuture -d dev
|
|
|
|
|
|
|
|
- name: deploy
|
|
|
|
run: |
|
|
|
|
cd dev
|
|
|
|
pagefind --source=.
|
|
|
|
rsync -azr --delete ./ /opt/data/webdata/gcg-website-dev/
|
|
|
|
|
|
|
|
- name: notification
|
|
|
|
uses: https://github.com/yamaks2306/telegram-notification@main
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
chat_id: ${{ secrets.TG_CHAT_ID }}
|
|
|
|
token: ${{ secrets.TG_TOKEN }}
|
2023-03-26 17:08:24 +02:00
|
|
|
include_commit_info: false
|