diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index bfa5143..a484e18 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -17,11 +17,13 @@ on: pull_request: # The branches below must be a subset of the branches above branches: [ master ] + schedule: + - cron: '31 15 * * 5' jobs: analyze: name: Analyze - runs-on: windows-latest + runs-on: ubuntu-latest strategy: fail-fast: false @@ -49,18 +51,13 @@ jobs: # If this step fails, then you should remove it and run the build manually (see below) #- name: Autobuild # uses: github/codeql-action/autobuild@v1 - - - name: Setup MSBuild Path - uses: microsoft/Setup-MSBuild@v1 + - name: Setup .Net + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel - #- name: Setup NuGet - # uses: NuGet/setup-nuget@v1.0.4 - - - name: Restore NuGet Packages - run: nuget restore butterflow-ui/butterflow-ui.sln - - - name: Build and Publish Web App - run: msbuild /p:UseSharedCompilation=false butterflow-ui/butterflow-ui.sln + - name : Build + run: dotnet build butterflow-ui/butterflow-ui.csproj # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl