added new ServerInfo #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish to nuget | |
on: | |
push: | |
branches: | |
- master # Default release branch | |
jobs: | |
publish: | |
name: build, pack & publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
- name: publish Hathor on version change | |
uses: alirezanet/publish-nuget@v3.0.0 | |
with: | |
PROJECT_FILE_PATH: Hathor/Hathor.csproj | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
- name: publish Wallet on version change | |
uses: alirezanet/publish-nuget@v3.0.0 | |
with: | |
PROJECT_FILE_PATH: Hathor.Wallet/Hathor.Wallet.csproj | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} |