From 7dc4ec999e1cb94b1fe0ee314c815275bd9a44dc Mon Sep 17 00:00:00 2001 From: Yaakov Date: Sun, 5 Dec 2021 00:02:57 +1100 Subject: [PATCH] we actually need to specify an sdk version otherwise this does nothing --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01afa0b5..5dbc0a5d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,10 +24,15 @@ jobs: configuration: [Release, Debug] steps: - uses: actions/checkout@v2 + - name: Setup .NET Core uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' + - name: Build run: dotnet publish -c ${{ matrix.configuration }} -o artifacts + - name: Upload artifact uses: actions/upload-artifact@v2 if: matrix.configuration == 'Release'