2023-03-19 09:41:06 +01:00
|
|
|
name: website-dev
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
concurrency:
|
2023-04-03 12:05:18 +02:00
|
|
|
group: ${{ gitea.workflow }}-${{ gitea.ref }}
|
2023-03-19 09:41:06 +01:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dev-build:
|
2023-04-23 14:14:40 +02:00
|
|
|
if: gitea.repository == 'gcg/gcg-website'
|
2023-03-19 09:41:06 +01:00
|
|
|
runs-on: act-runner-user
|
|
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
2023-09-23 23:05:25 +02:00
|
|
|
- name: pull
|
|
|
|
run: |
|
|
|
|
cd /opt/data/actions/gcg-website-dev
|
|
|
|
git pull
|
|
|
|
git reset --hard origin/dev
|
2023-03-19 09:41:06 +01:00
|
|
|
- name: build
|
2023-09-23 23:05:25 +02:00
|
|
|
run: |
|
|
|
|
cd /opt/data/actions/gcg-website-dev
|
|
|
|
rm -rf dev
|
|
|
|
hugo --minify --gc --baseURL "https://dev.cantorgymnasium.de/" --buildDrafts --buildFuture -d dev
|
2023-03-19 09:41:06 +01:00
|
|
|
- name: deploy
|
|
|
|
run: |
|
2023-09-23 23:05:25 +02:00
|
|
|
cd /opt/data/actions/gcg-website-dev/dev
|
2023-09-23 18:01:28 +02:00
|
|
|
pagefind_extended --site=.
|
2023-03-19 09:41:06 +01:00
|
|
|
rsync -azr --delete ./ /opt/data/webdata/gcg-website-dev/
|
|
|
|
- name: notification
|
2023-04-03 12:05:18 +02:00
|
|
|
uses: actions/telegram-action@main
|
2023-03-19 09:41:06 +01:00
|
|
|
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
|