„.gitea/workflows/prod.yaml“ ändern
This commit is contained in:
parent
804cf7aa6c
commit
d049b5adc9
@ -1,18 +1,21 @@
|
|||||||
name: hugo build
|
name: website-main
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
prod-build:
|
||||||
if: github.repository == 'gcg/gcg-website'
|
if: github.repository == 'gcg/gcg-website'
|
||||||
runs-on: act-runner-user
|
runs-on: act-runner-user
|
||||||
|
timeout-minutes: 5
|
||||||
steps:
|
steps:
|
||||||
- name: clone
|
- name: clone
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@ -39,4 +42,29 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
chat_id: ${{ secrets.TG_CHAT_ID }}
|
chat_id: ${{ secrets.TG_CHAT_ID }}
|
||||||
token: ${{ secrets.TG_TOKEN }}
|
token: ${{ secrets.TG_TOKEN }}
|
||||||
|
include_commit_info: false
|
||||||
|
test-build:
|
||||||
|
if: github.repository == 'gcg/gcg-website'
|
||||||
|
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://test.cantorgymnasium.de/" --buildDrafts --buildFuture --output test
|
||||||
|
|
||||||
|
- name: deploy
|
||||||
|
run: |
|
||||||
|
cd test
|
||||||
|
pagefind --source=.
|
||||||
|
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/
|
Loading…
x
Reference in New Issue
Block a user