diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index b9f7587..3e23752 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -3,14 +3,13 @@ tag-template: 'v$RESOLVED_VERSION' categories: - title: ':rocket: Features and Enhancements' labels: - - 'feat' - - 'Feature' - - 'Enhancement' + - 'feature' + - 'enhancement' - title: ':bug: Bug Fixes' - label: 'Fix' + label: 'fix' - title: ':wrench: Maintenance' labels: - - 'Chore' + - 'chore' - title: ':page_facing_up: Documentation' label: 'Documentation' change-template: '- $TITLE (#$NUMBER) - @$AUTHOR' @@ -18,8 +17,8 @@ exclude-contributors: - 'dependabot' - 'dependabot[bot]' exclude-labels: - - 'Dependencies' - - 'Chore' + - 'dependencies' + - 'chore' version-resolver: major: labels: diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index f9a1856..a5c5ece 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -46,5 +46,6 @@ jobs: - name: Upload Release Assets if: ${{ github.event_name == 'push' }} run: | - gh release upload ${{ steps.draft-release.outputs.tag_name }} src/ESP01Firmware/build/esp8266.esp8266.generic/ESP01Firmware.ino.bin --clobber + zip ESP01Firmware.zip src/ESP01Firmware/build/esp8266.esp8266.generic/ESP01Firmware.ino.bin + gh release upload ${{ steps.draft-release.outputs.tag_name }} ESP01Firmware.zip --clobber