Skip to content

Commit 728af6e

Browse files
authored
Fix for more flat artifact download (#164)
1 parent 95b3332 commit 728af6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-minimal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
run: |-
3636
mkdir output
3737
version="${{ github.event.release.tag_name }}"
38-
cd "files/m5stack-atom-echo/$version"
39-
cp m5stack-atom-echo-esp32.factory.bin ../../../output/m5stack-atom-echo.minimal.factory.bin
40-
md5sum m5stack-atom-echo-esp32.factory.bin | head -c 32 > ../../../output/m5stack-atom-echo.minimal.factory.bin.md5
38+
cd "files/$version"
39+
cp m5stack-atom-echo-esp32.factory.bin ../../output/m5stack-atom-echo.minimal.factory.bin
40+
md5sum m5stack-atom-echo-esp32.factory.bin | head -c 32 > ../../output/m5stack-atom-echo.minimal.factory.bin.md5
4141
4242
- name: Upload files to release
4343
uses: softprops/action-gh-release@v2.5.0

0 commit comments

Comments
 (0)