„.gitea/workflows/prod.yaml“ ändern
This commit is contained in:
parent
1c048cffa6
commit
6a0cff2d50
@ -4,6 +4,8 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
issue_comment:
|
||||||
|
types: [created, edited, deleted]
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@ -66,3 +68,35 @@ jobs:
|
|||||||
cd test
|
cd test
|
||||||
pagefind --source=.
|
pagefind --source=.
|
||||||
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/
|
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/
|
||||||
|
auto-rebuild:
|
||||||
|
if: github.repository == 'gcg/gcg-website' && github.event.issue.number == 219
|
||||||
|
runs-on: act-runner-user
|
||||||
|
timeout-minutes: 5
|
||||||
|
steps:
|
||||||
|
- name: clone
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: setup hugo
|
||||||
|
uses: https://github.com/peaceiris/actions-hugo@v2
|
||||||
|
with:
|
||||||
|
hugo-version: '0.111.2'
|
||||||
|
extended: true
|
||||||
|
|
||||||
|
- 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: https://github.com/yamaks2306/telegram-notification@main
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
chat_id: ${{ secrets.TG_CHAT_ID }}
|
||||||
|
token: ${{ secrets.TG_TOKEN }}
|
||||||
|
include_commit_info: false
|
Loading…
x
Reference in New Issue
Block a user