gcg-website/.gitea/workflows/prod.yaml
Denys Konovalov 8a9b47989a
Some checks failed
website-main / test-build (push) Has started running
website-main / auto-rebuild (push) Has been skipped
website-main / prod-build (push) Failing after 1m6s
switch to docker-based runner
2023-09-09 16:35:27 +02:00

64 lines
1.8 KiB
YAML

name: website-main
on:
push:
branches:
- master
issue_comment:
types: [created]
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: ubuntu-latest
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
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: ubuntu-latest
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:
if: gitea.repository == 'gcg/gcg-website' && gitea.event.issue.number == 219
runs-on: ubuntu-latest
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/