Skip to content

Commit 6369ccb

Browse files
committed
fixed release naming based on tags
1 parent 75a277b commit 6369ccb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/HenningGross)
22

33
# FanControl.HomeAssistant
4+
[![dotnet package](https://github.com/hgross/FanControl.HomeAssistant/actions/workflows/pipeline.yml/badge.svg)](https://github.com/hgross/FanControl.HomeAssistant/actions/workflows/pipeline.yml)
5+
![GitHub all releases](https://img.shields.io/github/downloads/hgross/FanControl.HomeAssistant/total)
6+
47
[FanControl](https://github.com/Rem0o/FanControl.Releases)-Plugin for [HomeAssistant](https://www.home-assistant.io/) sensors.
58

69
- Integrates HomeAssistant temperature sensors into FanControl

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Copy-Item $assembly_path_release -Destination $plugin_target_dir -Recurse -Force
4242
############
4343
# Determine package name
4444
$gitHash = (git rev-parse --short HEAD)
45-
$gitTag = (git describe --exact-match --tags 2>&1 | Out-Null)
45+
$gitTag = (git describe --exact-match --tags 2>&1)
4646
if($gitTag) {
4747
$version = $gitTag;
4848
} else {

0 commit comments

Comments
 (0)