Skip to content

Commit

Permalink
fix(ci): Separate modified files with semicolon
Browse files Browse the repository at this point in the history
idf-build-apps expects semicolon separated list of modified files
  • Loading branch information
tore-espressif committed Jan 10, 2025
1 parent ac023c8 commit b36d6f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,14 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
with:
separator: ';' # idf-build-apps expects files seprated with semicolon

- name: Build ESP-BSP applications
shell: bash
env:
IDF_EXTRA_ACTIONS_PATH: "${{ github.workspace }}/examples"
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_modified_files }}
run: |
. ${IDF_PATH}/export.sh
pip install idf-component-manager==1.* ruamel.yaml idf-build-apps==2.4.3 --upgrade
Expand Down

0 comments on commit b36d6f7

Please sign in to comment.