Skip to content

.net 8 update

.net 8 update #53

Workflow file for this run

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: 8.0.x
- name: publish Hathor on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Hathor/Hathor.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
- name: publish Wallet on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Hathor.Wallet/Hathor.Wallet.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}