Skip to content

Commit

Permalink
Do not build -debug firmware for OSS since the source code is available
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieucarbou committed Mar 25, 2024
1 parent 0e41f9d commit ef50b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-oss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
rm -f platformio_override.ini
echo "pio_name=$(pio project config --json-output | jq -cr '.[0][1][0][1]')" >> $GITHUB_OUTPUT
echo "pio_default_envs=$(pio project config --json-output | jq -cr '[ .[][0] | select(startswith("env:oss-")) | .[4:] ]')" >> $GITHUB_OUTPUT
echo "pio_default_envs=$(pio project config --json-output | jq -cr '[ .[][0] | select(startswith("env:oss-") and (contains("-debug")|not)) | .[4:] ]')" >> $GITHUB_OUTPUT
outputs:
pio_name: ${{ steps.envs.outputs.pio_name }}
Expand Down

0 comments on commit ef50b96

Please sign in to comment.