From 67a6017637dbec2603ba197e23b2361cb8dfcb4d Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Mon, 2 Mar 2026 10:57:27 +0100 Subject: [PATCH] fix: add go mod tidy to generator --- .github/actions/build/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/build/action.yaml b/.github/actions/build/action.yaml index 696ac18e..1542e544 100644 --- a/.github/actions/build/action.yaml +++ b/.github/actions/build/action.yaml @@ -51,6 +51,7 @@ runs: shell: bash run: | set -e + cd generator && go mod tidy && cd .. go run generator/main.go build - name: Run make to build app