From 10ac0af4d6ae807cdd290473750e5c03452695e6 Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Fri, 17 Oct 2025 22:15:57 +0200 Subject: [PATCH] Fix for action.yml --- .github/actions/release-apps/action.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/actions/release-apps/action.yml b/.github/actions/release-apps/action.yml index 76a54d7..22c85f0 100644 --- a/.github/actions/release-apps/action.yml +++ b/.github/actions/release-apps/action.yml @@ -3,18 +3,13 @@ name: Release Apps runs: using: "composite" steps: - - name: 'Build' - uses: espressif/esp-idf-ci-action@v1 - with: - esp_idf_version: v5.5 - path: ./Apps/${{ inputs.app_name }} - command: 'python tactility.py build' - name: Download app artifacts uses: actions/download-artifact@v3 with: path: downloaded_apps - name: Place reports' artifacts run: rsync -av downloaded_apps/*/*/ release_apps/ + shell: bash - name: 'Upload Artifact' uses: actions/upload-artifact@v4 with: @@ -23,3 +18,4 @@ runs: retention-days: 30 - name: Output run: ls -R release_apps/ + shell: bash