From eeef40975252bdd2dddca1982406c411825f979b Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Wed, 7 Jan 2026 21:54:36 +0100 Subject: [PATCH] CI fix (#20) Fix to support building for multiple architectures --- .github/actions/build-app/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-app/action.yml b/.github/actions/build-app/action.yml index 4332e3c..7aac053 100644 --- a/.github/actions/build-app/action.yml +++ b/.github/actions/build-app/action.yml @@ -16,7 +16,9 @@ runs: with: esp_idf_version: v5.5 path: ./Apps/${{ inputs.app_name }} - command: 'python tactility.py build' + # The export reset prevents an error when building other targets + # The default environment variable is set to "esp32" by the GitHub Action + command: 'export IDF_TARGET= && python tactility.py build' - name: 'Upload Artifact' uses: actions/upload-artifact@v4 with: