From f43b1e9ea72bc5426c0123542d9765f600641166 Mon Sep 17 00:00:00 2001 From: Max P Date: Tue, 22 Apr 2025 17:13:58 +0000 Subject: [PATCH] Update build workflow to enable submodule checkout and simplify build command --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c002f2..105c2ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,9 @@ name: Manuelles Build mit ISE on: workflow_dispatch: + push: + branches: + - main jobs: build: @@ -9,9 +12,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + submodules: true - name: Build run: | cd "$GITHUB_WORKSPACE/build" - make trace + make