From 5029c033c7b3a2ccb599c15951262230c38727a9 Mon Sep 17 00:00:00 2001 From: karlTGA Date: Sun, 31 Aug 2025 15:47:15 +0200 Subject: [PATCH 1/3] chore: enable pipefail in config parser script --- app/config_parser.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config_parser.sh b/app/config_parser.sh index d806592..5ec07e2 100644 --- a/app/config_parser.sh +++ b/app/config_parser.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -set -e +set -euo pipefail if [ -n "$CONFIG_FILE" ]; then if [ ! -f "$CONFIG_FILE" ]; then From 1b100972a6f154b416a6bbd2a873104453e9e441 Mon Sep 17 00:00:00 2001 From: Karl Date: Sun, 31 Aug 2025 16:17:53 +0200 Subject: [PATCH 2/3] remove duplicated test --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 019c14a..a01edc8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,10 +14,8 @@ jobs: run: sudo apt-get update && sudo apt-get install -y shellcheck - name: Run ShellCheck run: shellcheck run.sh app/config_parser.sh tests/*.sh - - name: Run Docker build and test + - name: Run test run: bash test.sh - - name: Run watch config test - run: sudo bash tests/watch_config_test.sh - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log in to Docker Hub From bbd62af7a6a8a9d4b633b5a976710b06663e37fd Mon Sep 17 00:00:00 2001 From: Karl Date: Sun, 31 Aug 2025 16:18:18 +0200 Subject: [PATCH 3/3] fix docker tag --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a01edc8..db54fb8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,4 +30,4 @@ jobs: with: context: . push: true - tags: ${{ secrets.DOCKER_USER }}/${{ github.event.repository.name }}:latest + tags: racemap/${{ github.event.repository.name }}:latest