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

Failed to ignore revisions in .git-blame-ignore-revs.

64 lines
1.8 KiB
YAML
Raw Permalink Normal View History

name: website-main
on:
push:
branches:
- master
issue_comment:
2023-04-03 12:05:18 +02:00
types: [created]
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: clone
uses: actions/checkout@v3
- name: build
run: hugo --minify --gc --baseURL "https://cantorgymnasium.de/"
- name: deploy
run: |
cd 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: clone
uses: actions/checkout@v3
- name: build
run: hugo --minify --gc --baseURL "https://test.cantorgymnasium.de/" --buildDrafts --buildFuture -d test
- name: deploy
run: |
cd test
pagefind --source=.
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/
auto-rebuild:
2023-04-03 12:05:18 +02:00
if: gitea.repository == 'gcg/gcg-website' && gitea.event.issue.number == 219
runs-on: act-runner-user
timeout-minutes: 5
steps:
- name: clone
uses: actions/checkout@v3
- name: build
run: hugo --minify --gc --baseURL "https://cantorgymnasium.de/"
- name: deploy
run: |
cd public
pagefind --source=.
2023-03-26 17:08:24 +02:00
rsync -azr --delete ./ /opt/data/webdata/gcg-website/