Skip to content

Commit 32d1021

Browse files
committed
Standardize formatting of shell code in workflow
Shell scripts in Arduino tooling projects are formatted according to the style implemented by the shfmt formatting tool. In addition to standalone script files, significant quantities of complex shell code is also found in the asset tasks and workflows. shfmt can not be used to format this code (both due to the fact it is in the form of strings in YAML documents, and due to the fact that it is actually templates of shell code (making use of the templating features of Task and GitHub Actions) rather than complete shell code). However, it still makes sense to align the formatting of this code with the standardized shell code style where doing so is feasible.
1 parent 770cf32 commit 32d1021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-go-nightly-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
-C ../../ \
206206
LICENSE.txt
207207
208-
echo "PACKAGE_FILENAME=$PACKAGE_FILENAME" >> $GITHUB_ENV
208+
echo "PACKAGE_FILENAME=$PACKAGE_FILENAME" >>$GITHUB_ENV
209209
210210
- name: Replace artifact with notarized build
211211
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)