Skip to content

Commit d950dd2

Browse files
authored
Merge pull request #108 from Lyr3x/dev
Test new release action
2 parents 2f21c14 + a07fa78 commit d950dd2

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/create_release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
export TAG=$(head -1 CHANGELOG.tmp | cut -d' ' -f2)
2525
echo "TAG=$TAG" >> $GITHUB_ENV
2626
- name: Create Release
27-
uses: actions/create-release@v1
28-
env:
29-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
uses: ncipollo/release-action@v1
3028
with:
31-
tag_name: ${{ env.TAG }}
32-
release_name: ${{ env.TAG }}
33-
body_path: CHANGELOG.tmp
29+
token: ${{ secrets.GITHUB_TOKEN }}
30+
tag: ${{ env.TAG }}
31+
name: ${{ env.TAG }}
32+
bodyFile: "CHANGELOG.tmp"
3433
draft: false
3534
prerelease: false
35+
generateReleaseNotes: true

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.5.1
4+
5+
6+
37
## 1.5.0
48

59
- Manual ROI configuration fixed

components/roode/roode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace esphome {
1818
namespace roode {
1919
#define NOBODY 0
2020
#define SOMEONE 1
21-
#define VERSION "1.5.0"
21+
#define VERSION "1.5.1"
2222
static const char *const TAG = "Roode";
2323
static const char *const SETUP = "Setup";
2424
static const char *const CALIBRATION = "Sensor Calibration";

0 commit comments

Comments
 (0)