From da45f1dd86269cb3f6930ca216d4143ffc272a77 Mon Sep 17 00:00:00 2001 From: Logan Buesching Date: Thu, 11 Jan 2024 14:45:23 -0500 Subject: [PATCH] Fix syntax --- .github/workflows/build_test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 5731e9e..a2b255f 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -33,13 +33,13 @@ jobs: run: dotnet restore - name: Build working-directory: ./src - run: dotnet build --configuration {{ inputs.build_configuration }} --no-restore + run: dotnet build --configuration ${{ inputs.build_configuration }} --no-restore - name: Upload Sage Build uses: actions/upload-artifact@v3 with: name: SageWebhost - path: Sage.Webhost/bin/{{ inputs.build_configuration }}/net8.0/ + path: Sage.Webhost/bin/${{ inputs.build_configuration }}/net8.0/ retention-days: 7 - name: Test working-directory: ./src - run: dotnet test --no-build --verbosity normal {{ inputs.test_args }} + run: dotnet test --no-build --verbosity normal ${{ inputs.test_args }}