fix: fixed the Issue with long Names and adapted the count of Entity in a row #33

Merged
Penry merged 2 commits from SomeCSSReworks into main 2025-12-27 23:00:03 +01:00
Showing only changes of commit 899a36a49c - Show all commits

View File

@@ -3,7 +3,7 @@ name: Build Docker Linux ARM64
on:
push:
branches:
#- main
- main
jobs:
build-docker-linux-arm64:
@@ -18,8 +18,16 @@ jobs:
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Get Repository Name
id: get_repo
run: |
echo "REPO_LC=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
- name: Build Linux ARM64 Docker Image
run: docker build -t couchlog-linux-arm64 .
run: |
docker build \
-t gitea.penry.de/${{ env.REPO_LC }}:latest \
.
- name: Save Docker Image to Tar
run: docker save -o CouchLog-Linux-ARM64-Docker-Image.tar couchlog-linux-arm64
@@ -30,4 +38,4 @@ jobs:
name: CouchLog-Linux-ARM64-Docker-Image
path: CouchLog-Linux-ARM64-Docker-Image.tar
if-no-files-found: error
retention-days: 1
retention-days: 5