From ec081c47168ff008849e3f47b608ced91ebf240b Mon Sep 17 00:00:00 2001 From: Pedro Brito Date: Sun, 7 Mar 2021 14:51:50 +0000 Subject: [PATCH] Update and rename release.yml to publish.yml --- .github/workflows/{release.yml => publish.yml} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) rename .github/workflows/{release.yml => publish.yml} (84%) diff --git a/.github/workflows/release.yml b/.github/workflows/publish.yml similarity index 84% rename from .github/workflows/release.yml rename to .github/workflows/publish.yml index f946c28..8aec190 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/publish.yml @@ -12,14 +12,19 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v2 + - name: Setup .NET uses: actions/setup-dotnet@v1 with: dotnet-version: 5.0.x + - name: Install dependencies run: dotnet restore + working-directory: ./MagicDb + - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build ./MagicDb --configuration Release --no-restore + - name: Publish to NuGet uses: brandedoutcast/publish-nuget@v2 with: