Skip to content

Commit 3ee7b56

Browse files
committed
fix: draft releases
1 parent cf8eb02 commit 3ee7b56

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/release-drafter.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,22 @@ tag-template: 'v$RESOLVED_VERSION'
33
categories:
44
- title: ':rocket: Features and Enhancements'
55
labels:
6-
- 'feat'
7-
- 'Feature'
8-
- 'Enhancement'
6+
- 'feature'
7+
- 'enhancement'
98
- title: ':bug: Bug Fixes'
10-
label: 'Fix'
9+
label: 'fix'
1110
- title: ':wrench: Maintenance'
1211
labels:
13-
- 'Chore'
12+
- 'chore'
1413
- title: ':page_facing_up: Documentation'
1514
label: 'Documentation'
1615
change-template: '- $TITLE (#$NUMBER) - @$AUTHOR'
1716
exclude-contributors:
1817
- 'dependabot'
1918
- 'dependabot[bot]'
2019
exclude-labels:
21-
- 'Dependencies'
22-
- 'Chore'
20+
- 'dependencies'
21+
- 'chore'
2322
version-resolver:
2423
major:
2524
labels:

.github/workflows/compile.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ jobs:
4646
- name: Upload Release Assets
4747
if: ${{ github.event_name == 'push' }}
4848
run: |
49-
gh release upload ${{ steps.draft-release.outputs.tag_name }} src/ESP01Firmware/build/esp8266.esp8266.generic/ESP01Firmware.ino.bin --clobber
49+
zip ESP01Firmware.zip src/ESP01Firmware/build/esp8266.esp8266.generic/ESP01Firmware.ino.bin
50+
gh release upload ${{ steps.draft-release.outputs.tag_name }} ESP01Firmware.zip --clobber
5051

0 commit comments

Comments
 (0)