Skip to content

Commit

Permalink
chore: resolve linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomiguelino committed Jan 20, 2025
1 parent 09fbf2c commit ddc10ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ jobs:

- name: Set Docker tag
run: |
echo "GIT_SHORT_HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "GIT_SHORT_HASH=$(git rev-parse --short HEAD)" >> "$GITHUB_ENV
if [ "${{ matrix.board }}" == "pi4" ]; then
echo "BOARD=${{ matrix.board }}-64" >> $GITHUB_ENV
echo "BOARD=${{ matrix.board }}-64" >> "$GITHUB_ENV"
else
echo "BOARD=${{ matrix.board }}" >> $GITHUB_ENV
echo "BOARD=${{ matrix.board }}" >> "$GITHUB_ENV"
fi
echo "SHM_SIZE=256mb" >> $GITHUB_ENV
echo "SHM_SIZE=256mb" >> "$GITHUB_ENV"
- name: Prepare Balena file
run: |
Expand Down

0 comments on commit ddc10ce

Please sign in to comment.