From 98547a9df686d4b7c58cee41bc99d7dc2bf02aac Mon Sep 17 00:00:00 2001 From: Michael Green <84688932+michael-j-green@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:27:54 +1000 Subject: [PATCH] Added a manual trigger to compile (#102) * Added a manual trigger to compile * Added missing nuget source --- .github/workflows/dotnet.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1df13c8..f818c14 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -5,6 +5,7 @@ on: branches: [master] pull_request: branches: [master] + workflow_dispatch: jobs: build: @@ -15,6 +16,8 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: 7.0.x + - name: Sign in to Nuget + run: dotnet nuget add source --username michael-j-green --password ${{ secrets.NUGETKEY }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/gaseous-project/index.json" - name: Restore dependencies run: dotnet restore - name: Build