Skip to content

Commit

Permalink
Broken YML Bugfix (#161)
Browse files Browse the repository at this point in the history
* missing quote marks
* Added v back in
  • Loading branch information
LukeWalker-CA authored Jun 3, 2024
1 parent 14f830c commit 894a6e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/stm32build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ jobs:
run: |
if [[ -e STM32/${{ matrix.package }}/Core/Inc/pcbversion.h ]]; then
echo "versionfile=STM32/${{ matrix.package }}/Core/Inc/pcbversion.h" >> $GITHUB_OUTPUT
echo "latest=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/Core/Inc/pcbversion.h latest both") >> $GITHUB_OUTPUT
echo "breaking=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/Core/Inc/pcbversion.h breaking both") >> $GITHUB_OUTPUT
echo "latest=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/Core/Inc/pcbversion.h latest both")" >> $GITHUB_OUTPUT
echo "breaking=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/Core/Inc/pcbversion.h breaking both")" >> $GITHUB_OUTPUT
else
echo "versionfile=STM32/${{ matrix.package }}/pcbversion" >> $GITHUB_OUTPUT
echo "latest=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/pcbversion latest both") >> $GITHUB_OUTPUT
echo "breaking=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/pcbversion breaking both") >> $GITHUB_OUTPUT
echo "latest=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/pcbversion latest both")" >> $GITHUB_OUTPUT
echo "breaking=$(eval "./util/pcbversion.py STM32/${{ matrix.package }}/pcbversion breaking both")" >> $GITHUB_OUTPUT
fi
- name: Release
Expand All @@ -148,7 +148,7 @@ jobs:
**/*.elf
**/*.bin
tag_name: ${{ steps.release-on-push-2.outputs.tag_name }}
name: "${{ steps.release-on-push-2.outputs.tag_name }}-PCB${{ steps.pcbversion.outputs.latest }}"
name: "${{ steps.release-on-push-2.outputs.tag_name }}-PCBv${{ steps.pcbversion.outputs.latest }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare zip file for Azure blob
Expand Down

0 comments on commit 894a6e8

Please sign in to comment.