Skip to content

Commit db9e05b

Browse files
committed
add build workflow
1 parent 97ae97f commit db9e05b

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.github/workflows/build.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

Nuget.Config

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<packageSources>
44
<clear />
55
<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" />
77
</packageSources>
88
<packageSourceCredentials>
99
<github>
10-
<add key="Username" value="asynchandler" />
10+
<add key="Username" value="eventstorage" />
1111
<add key="ClearTextPassword" value="some-password" />
1212
</github>
1313
</packageSourceCredentials>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Github follow](https://img.shields.io/badge/give_us_a-⭐-yellow?logo=github)](https://github.com/eventstorage/tdiscover)
88

99
<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">
1111
</div>
1212

1313
### Overview

0 commit comments

Comments
 (0)