File tree 3 files changed +31
-3
lines changed
3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change
1
+
2
+ name : build workflow
3
+
4
+ on :
5
+ push :
6
+ branches : [ "main" ]
7
+ pull_request :
8
+ branches : [ "main" ]
9
+
10
+ jobs :
11
+
12
+ build :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : checkout repo
17
+ uses : actions/checkout@v4
18
+
19
+ - name : install net8
20
+ uses : actions/setup-dotnet@v4
21
+ with :
22
+ dotnet-version : 8.0.x
23
+
24
+ - name : restore
25
+ run : dotnet restore
26
+
27
+ - name : build
28
+ run : dotnet build --no-restore
Original file line number Diff line number Diff line change 3
3
<packageSources >
4
4
<clear />
5
5
<add key =" nuget" value =" https://api.nuget.org/v3/index.json" />
6
- <add key =" github" value =" https://nuget.pkg.github.com/asynchandler /index.json" />
6
+ <add key =" github" value =" https://nuget.pkg.github.com/eventstorage /index.json" />
7
7
</packageSources >
8
8
<packageSourceCredentials >
9
9
<github >
10
- <add key =" Username" value =" asynchandler " />
10
+ <add key =" Username" value =" eventstorage " />
11
11
<add key =" ClearTextPassword" value =" some-password" />
12
12
</github >
13
13
</packageSourceCredentials >
Original file line number Diff line number Diff line change 7
7
[ ![ Github follow] ( https://img.shields.io/badge/give_us_a-⭐-yellow?logo=github )] ( https://github.com/eventstorage/tdiscover )
8
8
9
9
<div align =" left " >
10
- <img src=".assets/github.PNG " width="80" height="80" style="float:left;" alt="asynchandler">
10
+ <img src=".assets/github.png " width="80" height="80" style="float:left;" alt="asynchandler">
11
11
</div >
12
12
13
13
### Overview
You can’t perform that action at this time.
0 commit comments