.gitea/workflows/prod.yml aktualisiert
Some checks failed
schuelerzeitung-prod / prod-build (push) Failing after 1s
schuelerzeitung-prod / test-build (push) Successful in 3s

This commit is contained in:
Denys Konovalov 2023-12-30 22:08:16 +01:00
parent 874acfe720
commit 15b7e5bd2b

@ -7,7 +7,7 @@ on:
defaults:
run:
working-directory: /opt/data/actions/schuelerzeitung-main
working-directory: /opt/runner/workdir/schuelerzeitung-main
jobs:
prod-build:
@ -15,24 +15,30 @@ jobs:
runs-on: act-runner-user
timeout-minutes: 5
steps:
- name: pull
- name: Pull
run: |
git fetch --all
git reset --hard origin/main
- name: build
- name: Build
run: |
rm -rf public
hugo --minify --gc --baseURL "https://schuelerzeitung-gcg.de/"
- name: deploy
- name: Deploy
run: |
cd public
rsync -azr --delete ./ /opt/data/webdata/schuelerzeitung/
- name: notification
- name: Telegram notification
uses: actions/telegram-action@main
if: always()
with:
chat_id: ${{ secrets.TG_CHAT_ID }}
token: ${{ secrets.TG_TOKEN }}
- name: Discord notification
uses: https://github.com/PingChunChung/actions-discord-notifier
with:
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
test-build:
if: gitea.repository == 'gcg/schuelerzeitung'
runs-on: act-runner-user