diff --git a/.github/workflows/AntDesignDocsWebApp.yml b/.github/workflows/AntDesignDocsWebApp.yml index 82fb3271..042a46bf 100644 --- a/.github/workflows/AntDesignDocsWebApp.yml +++ b/.github/workflows/AntDesignDocsWebApp.yml @@ -19,9 +19,9 @@ jobs: with: dotnet-version: ${{ env.DOTNET_CORE_VERSION }} - name: Restore - run: dotnet restore "${{ env.WORKING_DIRECTORY }}" + run: dotnet restore - name: Build - run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-restore + run: dotnet build --configuration ${{ env.CONFIGURATION }} --no-restore - name: Test run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build - name: Publish