Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Get release description notes from PR
id: pr_body
run: bash .github/scripts/get-pr-body.sh
id: pr_details
run: bash .github/scripts/get-pr-details.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.semver.outputs.tag }}
name: Release ${{ steps.semver.outputs.tag }}
body: ${{ steps.pr_body.outputs.result }}
name: ${{ steps.pr_details.outputs.title }}
body: ${{ steps.pr_details.outputs.body }}
files: |
.pio/build/release/firmware.bin
.pio/build/release/bootloader.bin
Expand Down