Add logo and brand with more CCCHH (#10)
All checks were successful
/ build (push) Successful in 11s

Reviewed-on: #10
Co-authored-by: Stefan Bethke <stb@lassitu.de>
Co-committed-by: Stefan Bethke <stb@lassitu.de>
This commit is contained in:
Stefan Bethke 2024-10-13 13:29:36 +02:00 committed by stb
commit fc235e6310
20 changed files with 192 additions and 15 deletions

View file

@ -36,9 +36,15 @@ jobs:
if: github.ref_name != 'main'
run: |
sed -i "s#baseURL: 'https://hackertours.hamburg.ccc.de/'#baseURL: 'https://staging.hackertours.hamburg.ccc.de/pr${{ github.event.pull_request.number }}/'#" hugo.yaml
- name: Build website
- name: Build website (prod)
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref_name == 'main'
run: |
hugo
- name: Build website (staging)
if: github.ref_name != 'main'
run: |
hugo --buildFuture --buildDrafts
- name: Deploy - Prepare keys
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'