Skip to content

Commit c1f9c30

Browse files
committed
fix branch for grep for release-info.txt
1 parent ca84ea8 commit c1f9c30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/parallel_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ jobs:
7777
mkdir -p framework-arduinoespressif32/tools/slave_firmware
7878
mv slave_firmware/* framework-arduinoespressif32/tools/slave_firmware/
7979
mv framework-arduinoespressif32/release-info.txt .
80-
IDF_BRANCH=$(grep '^IDF_BRANCH=' framework-arduinoespressif32/release-info.txt | cut -d'=' -f2 | tr -d '"')
81-
IDF_COMMIT=$(grep '^IDF_COMMIT=' framework-arduinoespressif32/release-info.txt | cut -d'=' -f2 | tr -d '"')
80+
IDF_BRANCH=$(grep '^IDF_BRANCH=' release-info.txt | cut -d'=' -f2 | tr -d '"')
81+
IDF_COMMIT=$(grep '^IDF_COMMIT=' release-info.txt | cut -d'=' -f2 | tr -d '"')
8282
idf_version_string="${IDF_BRANCH//\//_}-$IDF_COMMIT"
8383
7z a -mx=9 -tzip -xr'!.*' framework-arduinoespressif32-${idf_version_string}.zip framework-arduinoespressif32/
8484

0 commit comments

Comments
 (0)