Skip to content

Commit 8decbe5

Browse files
committed
Fix publish firmware workflow
1 parent b2ecc3c commit 8decbe5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/publish-firmware.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,8 @@ jobs:
7373
- name: Read firmware files list
7474
id: read-files
7575
run: |
76-
FILES=$(cat ${{ env.FIRMWARE_FILES_LIST }} | grep -v '^#' | grep -v '^$' | tr '\n' ' ' | sed 's/ $//')
7776
echo "files<<EOF" >> $GITHUB_OUTPUT
78-
echo "$FILES" | tee -a $GITHUB_OUTPUT
77+
cat ${{ env.FIRMWARE_FILES_LIST }} | grep -v '^#' | grep -v '^$' | tee -a $GITHUB_OUTPUT
7978
echo "EOF" >> $GITHUB_OUTPUT
8079
8180
build-firmware:

0 commit comments

Comments
 (0)