Skip to content

Commit eef0a5b

Browse files
author
심승용
committed
no message
1 parent fa676c3 commit eef0a5b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/Push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
TAG_NAME: ${{ github.ref }}
2323
run: |
24-
get-childitem ./ -recurse -include *.csproj | ForEach-Object {(get-content -encoding utf8 $_.FullName) -replace 'VERSION_INFO_HERE', '0.0.0' | out-file -encoding utf8 $_.FullName}
24+
get-childitem ./ -recurse -include *.csproj | ForEach-Object {(get-content -encoding utf8 $_.FullName) -replace '0.0.0.0', '0.0.0' | out-file -encoding utf8 $_.FullName}
2525
- name: Install dependencies
2626
run: dotnet restore
2727
- name: Build

.github/workflows/Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
echo $env:TAG_NAME
2727
echo ($env:TAG_NAME -replace 'refs/tags/v', '')
28-
get-childitem ./ -recurse -include *.csproj | ForEach-Object {(get-content -encoding utf8 $_.FullName) -replace 'VERSION_INFO_HERE', ($env:TAG_NAME -replace 'refs/tags/v', '') | out-file -encoding utf8 $_.FullName}
28+
get-childitem ./ -recurse -include *.csproj | ForEach-Object {(get-content -encoding utf8 $_.FullName) -replace '0.0.0.0', ($env:TAG_NAME -replace 'refs/tags/v', '') | out-file -encoding utf8 $_.FullName}
2929
type ./ToastNotifier.csproj
3030
- name: Install dependencies
3131
run: dotnet restore

ToastNotifier.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
message-format = "{monitor_name}{Trigger}{repos}"
99
}
1010
server{
11-
url = "http://192.168.70.23:7780"
11+
url = "http://192.168.70.21:7780"
1212
}
1313
}
1414

1515
kafka {
16-
topics = ["bluecats.alert"]
17-
bootstrap-servers = ["192.168.70.23:7710"]
16+
topics = ["bluecats.in.alert.opendistro"]
17+
bootstrap-servers = ["192.168.70.21:7710"]
1818
}
1919

2020
akka.kafka.producer {

ToastNotifier.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net472</TargetFramework>
55
<ExtrasEnableWpfProjectSetup>true</ExtrasEnableWpfProjectSetup>
66
<UseWPF>true</UseWPF>
7-
<Version>VERSION_INFO_HERE</Version>
7+
<Version>0.0.0.0</Version>
88
<ApplicationIcon />
99
<StartupObject />
1010
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>

0 commit comments

Comments
 (0)