Skip to content

Commit 1288a2b

Browse files
committed
Testing release build of 0.1.0.
1 parent f342a27 commit 1288a2b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
"on":
44
push:
55
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+.*'
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
77

88
defaults:
99
run:

custom_components/powersensor/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"powersensor-local==2.0.1"
1717
],
1818
"single_config_entry": true,
19-
"version": "0.0.0",
20-
"zeroconf": [
19+
"version": "0.1.0",
20+
"zeroconf": [
2121
"_powersensor._udp.local."
2222
]
2323
}

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ root_dir="${this_dir}/.."
88

99
cd "${root_dir}" || exit 1
1010

11-
ref="$(git describe --always)"
11+
ref="$(git describe --tags)"
1212
manifest_ver=$(jq -r .version custom_components/powersensor/manifest.json)
1313
if [ "${ref}" != "v${manifest_ver}" ]
1414
then

0 commit comments

Comments
 (0)