Skip to content

Commit 0c82dd3

Browse files
committed
wrong folder for build framework
1 parent d2985ff commit 0c82dd3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/parallel_build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/upload-artifact@v4
2929
with:
3030
name: artifacts-${{ matrix.target }}
31-
path: framework-arduinoespressif32
31+
path: out/framework-arduinoespressif32
3232

3333
build-slave_firmware:
3434
name: Build Slave Firmware
@@ -63,7 +63,7 @@ jobs:
6363
- name: Download build artifacts
6464
uses: actions/download-artifact@v4
6565
with:
66-
path: dist
66+
path: out
6767
pattern: artifacts-*
6868
merge-multiple: true
6969
- name: Download slave firmware
@@ -77,11 +77,11 @@ jobs:
7777
ls -la
7878
echo "Listing slave_firmware directory:"
7979
ls -la slave_firmware/ || echo "slave_firmware directory not found"
80-
echo "Listing dist directory:"
81-
ls -la dist/ || echo "dist directory not found"
80+
echo "Listing out directory:"
81+
ls -la out/ || echo "out directory not found"
8282
# Integrate slave firmware directly
83-
mkdir -p dist/framework-arduinoespressif32/tools/slave_firmware
84-
cp -r slave_firmware/* dist/framework-arduinoespressif32/tools/slave_firmware/
83+
mkdir -p out/framework-arduinoespressif32/tools/slave_firmware
84+
cp -r slave_firmware/* out/framework-arduinoespressif32/tools/slave_firmware/
8585
# Create final framework ZIP
8686
(cd dist && zip -qr framework-arduinoespressif32.zip framework-arduinoespressif32)
8787

0 commit comments

Comments
 (0)