Skip to content

Commit b52a7cd

Browse files
committed
updated Hydration to 1.314 and refactored name
1 parent 920ae80 commit b52a7cd

File tree

1,301 files changed

+87923
-67128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,301 files changed

+87923
-67128
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: publish HydraDX.NET
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
paths-ignore:
7+
- '*.md'
8+
9+
jobs:
10+
build:
11+
name: build & test & publish
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
##
18+
# Setup
19+
# Setup multiple .NET versions so we can build against all referenced .NET versions.
20+
##
21+
- name: Setup .NET 6.0.x
22+
uses: actions/setup-dotnet@v2
23+
with:
24+
dotnet-version: 6.0.x
25+
26+
##
27+
# Dependencies
28+
# Restore the project and its dependencies.
29+
##
30+
- name: Install dependencies
31+
run: dotnet restore Substrate.HydraDX.NET
32+
33+
##
34+
# Dependencies
35+
# Restore the project and its dependencies.
36+
##
37+
- name: Build HydraDX .NET
38+
run: |
39+
dotnet build Substrate.HydraDX.NET --configuration Release
40+
41+
##
42+
# Publishing
43+
# Publish all NuGet packages from Substrate Chains .NET
44+
##
45+
- name: Publish Substrate HydraDX .NET API Extension
46+
id: publish_nuget
47+
uses: alirezanet/[email protected]
48+
with:
49+
# Filepath of the project to be packaged, relative to root of repository
50+
PROJECT_FILE_PATH: Substrate.HydraDX.NET/Substrate.HydraDX.NET.NetApiExt/Substrate.HydraDX.NET.NetApiExt.csproj
51+
# NuGet package id, used for version detection & defaults to project name
52+
PACKAGE_NAME: Substrate.HydraDX.NET.Extension
53+
# API key to authenticate with NuGet server
54+
NUGET_KEY: ${{secrets.NUGET_API_KEY}}

Substrate.HydraDX.NET/.substrate/metadata.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

Substrate.HydraDX.NET/.substrate/substrate-config.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

Substrate.HydraDX.NET/Substrate.HydraDX.NET.Integration/NET/Integration/Client/BaseClient.cs

Lines changed: 0 additions & 294 deletions
This file was deleted.

0 commit comments

Comments
 (0)