Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
심승용 committed Apr 27, 2020
1 parent fa676c3 commit eef0a5b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
TAG_NAME: ${{ github.ref }}
run: |
get-childitem ./ -recurse -include *.csproj | ForEach-Object {(get-content -encoding utf8 $_.FullName) -replace 'VERSION_INFO_HERE', '0.0.0' | out-file -encoding utf8 $_.FullName}
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}
- name: Install dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
echo $env:TAG_NAME
echo ($env:TAG_NAME -replace 'refs/tags/v', '')
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}
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}
type ./ToastNotifier.csproj
- name: Install dependencies
run: dotnet restore
Expand Down
6 changes: 3 additions & 3 deletions ToastNotifier.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
message-format = "{monitor_name}{Trigger}{repos}"
}
server{
url = "http://192.168.70.23:7780"
url = "http://192.168.70.21:7780"
}
}

kafka {
topics = ["bluecats.alert"]
bootstrap-servers = ["192.168.70.23:7710"]
topics = ["bluecats.in.alert.opendistro"]
bootstrap-servers = ["192.168.70.21:7710"]
}

akka.kafka.producer {
Expand Down
2 changes: 1 addition & 1 deletion ToastNotifier.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net472</TargetFramework>
<ExtrasEnableWpfProjectSetup>true</ExtrasEnableWpfProjectSetup>
<UseWPF>true</UseWPF>
<Version>VERSION_INFO_HERE</Version>
<Version>0.0.0.0</Version>
<ApplicationIcon />
<StartupObject />
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
Expand Down

0 comments on commit eef0a5b

Please sign in to comment.