We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 093360b + 636360d commit b405962Copy full SHA for b405962
.github/workflows/build.yml
@@ -403,7 +403,7 @@ jobs:
403
mkdir -p build
404
shopt -s nullglob
405
for csv_file in partitions/esp32/*/partitions.csv; do
406
- variant=$(basename $(dirname $csv_file))
+ variant=$(basename "$(dirname "$csv_file")")
407
if [ -e "partitions/esp32/$variant/partitions.csv" ]; then
408
cp "$csv_file" "build/partitions-esp32-$variant.csv"
409
fi
@@ -414,7 +414,7 @@ jobs:
414
uses: ncipollo/release-action@v1
415
with:
416
artifacts: |
417
- build/*
+ build/partition-table-*.csv
418
body: |
419
Envelopes and partition tables for Toit SDK ${{ github.event.inputs.toit-version }}
420
allowUpdates: true
0 commit comments