gcg-website/.gitea/workflows/prod.yaml
Denys Konovalov 25a6e6d2dc
Some checks failed
website-main / prod-build (push) Successful in 1m10s
website-main / test-build (push) Failing after 33s
website-main / auto-rebuild (push) Has been skipped
.gitea/workflows/prod.yaml aktualisiert
2023-09-23 15:50:28 +02:00

80 lines
2.4 KiB
YAML

name: website-main
on:
push:
branches:
- master
issue_comment:
types: [created]
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ gitea.workflow }}-${{ gitea.ref }}
cancel-in-progress: true
jobs:
prod-build:
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
uses: actions/telegram-action@main
if: always()
with:
chat_id: ${{ secrets.TG_CHAT_ID }}
token: ${{ secrets.TG_TOKEN }}
include_commit_info: false
test-build:
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 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 cd /opt/data/actions/gcg-website-master/public
pagefind --source=.
rsync -azr --delete ./ /opt/data/webdata/gcg-website/