File tree Expand file tree Collapse file tree 4 files changed +63
-5
lines changed
src/Blazor.Extensions.Storage
test/Blazor.Extensions.Storage.Test Expand file tree Collapse file tree 4 files changed +63
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build :
10
+
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v1
15
+ - name : Setup .NET Core
16
+ uses : actions/setup-dotnet@v1
17
+ with :
18
+ dotnet-version : 3.1.100-preview1-014459
19
+ - name : Build
20
+ run : dotnet build --configuration Release
Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' v*' # Push events to matching v*, i.e. v1.0, v20.15.10
7
+
8
+ jobs :
9
+ build :
10
+
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@v1
15
+ - name : Setup .NET Core
16
+ uses : actions/setup-dotnet@v1
17
+ with :
18
+ dotnet-version : 3.1.100-preview1-014459
19
+ - name : Build
20
+ run : dotnet build --configuration Release
21
+ - name : Pack
22
+ working-directory : src/Blazor.Extensions.Storage
23
+ run : dotnet pack --configuration Release
24
+ - name : Push
25
+ working-directory : src/Blazor.Extensions.Storage/bin/Release
26
+ run : |
27
+ dotnet nuget push Blazor.Extensions.Storage.*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
28
+ - name : Create Release
29
+ uses : actions/create-release@master
30
+ env :
31
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+ with :
33
+ tag_name : ${{ github.ref }}
34
+ release_name : Release ${{ github.ref }}
35
+ draft : false
36
+ prerelease : false
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<Title >Blazor Extensions Storage</Title >
5
5
<Description >HTML 5 Storage API implementation for ASP.NET Core Blazor.</Description >
6
+ <PackageId >Blazor.Extensions.Storage</PackageId >
7
+ <PackageVersion >1.1.0-preview1</PackageVersion >
6
8
</PropertyGroup >
7
9
8
10
<PropertyGroup >
15
17
</PropertyGroup >
16
18
17
19
<ItemGroup >
18
- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 3.0.0 " />
20
+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 3.1.0-preview1.19508.20 " />
19
21
</ItemGroup >
20
22
21
23
<ItemGroup >
Original file line number Diff line number Diff line change 7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" Microsoft.AspNetCore.Blazor" Version =" 3.0 .0-preview9.19465.2 " />
11
- <PackageReference Include =" Microsoft.AspNetCore.Blazor.Build" Version =" 3.0 .0-preview9.19465.2 " PrivateAssets =" all" />
12
- <PackageReference Include =" Microsoft.AspNetCore.Blazor.DevServer" Version =" 3.0 .0-preview9.19465.2 " PrivateAssets =" all" />
13
- <PackageReference Include =" Microsoft.AspNetCore.Blazor.HttpClient" Version =" 3.0 .0-preview9.19465.2 " />
10
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor" Version =" 3.1 .0-preview1.19508.20 " />
11
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor.Build" Version =" 3.1 .0-preview1.19508.20 " PrivateAssets =" all" />
12
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor.DevServer" Version =" 3.1 .0-preview1.19508.20 " PrivateAssets =" all" />
13
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor.HttpClient" Version =" 3.1 .0-preview1.19508.20 " />
14
14
</ItemGroup >
15
15
16
16
<ItemGroup >
You can’t perform that action at this time.
0 commit comments