Compare commits

9 Commits

Author SHA1 Message Date
810be2c0cd ci: build tagged releases
Some checks failed
Build release images / build-container (push) Failing after 13s
Build latest image / build-container (push) Failing after 12s
2025-03-28 16:52:44 +01:00
ab6ce62649 fix/typo): user email confirmation
Some checks failed
Build latest image / build-container (push) Failing after 13s
2025-03-28 16:48:19 +01:00
112e7dbe7a feat: lfk brand font 2025-03-28 16:48:00 +01:00
0032df1862 feat(docker): Include .git directory in Docker image for version control
Some checks failed
Build latest image / build-container (push) Failing after 13s
2025-03-22 22:59:47 +01:00
8fbd031e46 fix(workflow): Set fetch-depth to 0 for full history in GitHub Actions
Some checks failed
Build latest image / build-container (push) Failing after 58s
2025-03-22 22:57:23 +01:00
5ecba1d65c Merge branch 'main' of git.odit.services:lfk/docs
Some checks failed
Build latest image / build-container (push) Failing after 1m4s
2025-03-22 22:51:35 +01:00
3c0738f11f feat(workflow): Add GitHub Actions workflow for building latest Docker image 2025-03-22 22:51:27 +01:00
7338080c32 fix(typo): Scanning Stations 2025-02-14 14:19:35 +01:00
ca8373e383 fix(navbar): Revert logo size 2025-01-18 08:35:20 +01:00
8 changed files with 72 additions and 5 deletions

View File

@@ -0,0 +1,29 @@
name: Build latest image
on:
push:
branches:
- main
jobs:
build-container:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to registry
uses: docker/login-action@v3
with:
registry: registry.odit.services
username: ${{ vars.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: |
${{ vars.REGISTRY }}/lfk/docs:latest
platforms: linux/amd64,linux/arm64

View File

@@ -0,0 +1,27 @@
name: Build release images
on:
push:
tags:
- "*.*.*"
jobs:
build-container:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to registry
uses: docker/login-action@v3
with:
registry: registry.odit.services
username: ${{ vars.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: |
${{ vars.REGISTRY }}/lfk/docs:${{ github.ref_name }}
platforms: linux/amd64,linux/arm64

View File

@@ -2,6 +2,7 @@ FROM hugomods/hugo:exts AS build
WORKDIR /app
COPY . /app/
COPY .git /app/.git
RUN hugo
FROM hugomods/hugo:nginx

11
assets/css/custom.css Normal file
View File

@@ -0,0 +1,11 @@
@font-face {
font-family: "Athiti";
src: url("/fonts/athiti.ttf");
}
html,
:host {
font-family: "Athiti";
}
.content {
font-family: "Athiti";
}

View File

@@ -58,7 +58,7 @@ menu:
pageRef: /selfservice
weight: 3
- identifier: scanstation
name: Scanerstationen
name: Scannerstationen
pageRef: /scanstation
weight: 4
- identifier: beamershow
@@ -85,8 +85,6 @@ params:
logo:
path: logo.svg
dark: logo.svg
width: 40
height: 20
link: /
width: normal
page:

View File

@@ -23,7 +23,8 @@ Deine E-Mail Adresse eingeben.
### E-Mail bestätigen
Du bekommst eine Mail, du sie hast auf den Link in der Mail klicken
Du bekommst eine Mail.
In dieser klickst du einfach auf den Link.
### Neues Passwort setzen

View File

@@ -1,7 +1,7 @@
user: User
admin: Administrators
selfservice: Selfservice
scanstation: Scaning Stations
scanstation: Scanning Stations
beamershow: Beamer Show
search: Search
editThisPage: "Edit this page →"

BIN
static/fonts/athiti.ttf Normal file

Binary file not shown.