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.
1 parent b2ecc3c commit 8decbe5Copy full SHA for 8decbe5
.github/workflows/publish-firmware.yml
@@ -73,9 +73,8 @@ jobs:
73
- name: Read firmware files list
74
id: read-files
75
run: |
76
- FILES=$(cat ${{ env.FIRMWARE_FILES_LIST }} | grep -v '^#' | grep -v '^$' | tr '\n' ' ' | sed 's/ $//')
77
echo "files<<EOF" >> $GITHUB_OUTPUT
78
- echo "$FILES" | tee -a $GITHUB_OUTPUT
+ cat ${{ env.FIRMWARE_FILES_LIST }} | grep -v '^#' | grep -v '^$' | tee -a $GITHUB_OUTPUT
79
echo "EOF" >> $GITHUB_OUTPUT
80
81
build-firmware:
0 commit comments