gcg-website/.gitea/workflows/prod.yaml

80 lines
2.4 KiB
YAML
Raw Normal View History

name: website-main
on:
push:
branches:
- master
issue_comment:
2023-04-03 12:05:18 +02:00
types: [created]
schedule:
2023-09-23 13:57:08 +02:00
- cron: '0 0 * * *'
concurrency:
2023-04-03 12:05:18 +02:00
group: ${{ gitea.workflow }}-${{ gitea.ref }}
cancel-in-progress: true
jobs:
prod-build:
2023-04-03 12:05:18 +02:00
if: gitea.repository == 'gcg/gcg-website' && gitea.event_name == 'push'
runs-on: act-runner-user
timeout-minutes: 5
steps:
- name: pull
run: |
cd /opt/data/actions/gcg-website-master
git fetch --all
git reset --hard origin/master
- name: build
run: |
cd /opt/data/actions/gcg-website-master
hugo --minify --gc --baseURL "https://cantorgymnasium.de/"
- name: deploy
run: |
cd /opt/data/actions/gcg-website-master/public
pagefind --source=.
rsync -azr --delete ./ /opt/data/webdata/gcg-website/
- name: notification
2023-04-03 12:05:18 +02:00
uses: actions/telegram-action@main
if: always()
with:
chat_id: ${{ secrets.TG_CHAT_ID }}
token: ${{ secrets.TG_TOKEN }}
include_commit_info: false
test-build:
2023-04-03 12:05:18 +02:00
if: gitea.repository == 'gcg/gcg-website' && gitea.event_name == 'push'
runs-on: act-runner-user
timeout-minutes: 5
steps:
- name: pull
run: |
cd /opt/data/actions/gcg-website-master
git fetch --all
git reset --hard origin/master
- name: build
run: |
cd /opt/data/actions/gcg-website-master
hugo --minify --gc --baseURL "https://test.cantorgymnasium.de/" --buildDrafts --buildFuture -d test
- name: deploy
run: |
cd /opt/data/actions/gcg-website-master/test
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/
auto-rebuild:
if: gitea.repository == 'gcg/gcg-website' && gitea.event_name == 'schedule'
runs-on: act-runner-user
timeout-minutes: 5
steps:
- name: pull
run: |
cd /opt/data/actions/gcg-website-master
git fetch --all
git reset --hard origin/master
- name: build
run: |
cd /opt/data/actions/gcg-website-master
hugo --minify --gc --baseURL "https://cantorgymnasium.de/"
- name: deploy
run: |
cd /opt/data/actions/gcg-website-master/public
pagefind --source=.
2023-03-26 17:08:24 +02:00
rsync -azr --delete ./ /opt/data/webdata/gcg-website/