.gitea/workflows/prod.yaml aktualisiert
All checks were successful
website-main / prod-build (push) Successful in 1m6s
website-main / test-build (push) Successful in 37s

This commit is contained in:
Denys Konovalov 2023-10-21 21:19:44 +02:00
parent e1e29c570d
commit 9537bd604c

@ -7,6 +7,10 @@ on:
schedule: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'
defaults:
run:
working-directory: /opt/data/actions/gcg-website-master
jobs: jobs:
prod-build: prod-build:
if: gitea.repository == 'gcg/gcg-website' if: gitea.repository == 'gcg/gcg-website'
@ -15,17 +19,15 @@ jobs:
steps: steps:
- name: pull - name: pull
run: | run: |
cd /opt/data/actions/gcg-website-master
git fetch --all git fetch --all
git reset --hard origin/master git reset --hard origin/master
- name: build - name: build
run: | run: |
cd /opt/data/actions/gcg-website-master
rm -rf public rm -rf public
hugo --minify --gc --baseURL "https://cantorgymnasium.de/" hugo --minify --gc --baseURL "https://cantorgymnasium.de/"
- name: deploy - name: deploy
run: | run: |
cd /opt/data/actions/gcg-website-master/public cd public
pagefind_extended --site=. pagefind_extended --site=.
rsync -azr --delete ./ /opt/data/webdata/gcg-website/ rsync -azr --delete ./ /opt/data/webdata/gcg-website/
- name: notification - name: notification
@ -41,15 +43,13 @@ jobs:
steps: steps:
- name: pull - name: pull
run: | run: |
cd /opt/data/actions/gcg-website-master
git fetch --all git fetch --all
git reset --hard origin/master git reset --hard origin/master
- name: build - name: build
run: | run: |
cd /opt/data/actions/gcg-website-master
rm -rf test rm -rf test
hugo --minify --gc --baseURL "https://test.cantorgymnasium.de/" --buildDrafts --buildFuture -d test hugo --minify --gc --baseURL "https://test.cantorgymnasium.de/" --buildDrafts --buildFuture -d test
- name: deploy - name: deploy
run: | run: |
cd /opt/data/actions/gcg-website-master/test cd test
rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/ rsync -azr --delete ./ /opt/data/webdata/gcg-website-test/