Skip to content

Commit

Permalink
Fix firmware env var creation pt2
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonm23 committed Aug 23, 2024
1 parent d2457eb commit 3da1e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
sudo apt install gcc-avr avr-libc
make ${{ github.event.inputs.make-target }}
echo "FIRMWARE=$("${{ github.event.inputs.make-target }}" | tr ':' '_')" >> $GITHUB_ENV
echo "FIRMWARE=$(echo "${{ github.event.inputs.make-target }}" | tr ':' '_')" >> $GITHUB_ENV
- name: Upload a Firmware
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 3da1e65

Please sign in to comment.