Skip to content

Commit

Permalink
Merge pull request dotnet-architecture#945 from dotnet-architecture/d…
Browse files Browse the repository at this point in the history
…ev/noecald/codeindex

Enable Code Index action with workflow_dispatch trigger
  • Loading branch information
jamesmontemagno authored Sep 14, 2023
2 parents d22efcc + 523d6dd commit 257a838
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/richnav.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: eShopOnWeb Rich Code Navigation
name: eShopOnWeb - Code Index

on: [push, pull_request, workflow_dispatch]
on: workflow_dispatch

jobs:
build:

runs-on: windows-2019
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
Expand All @@ -15,8 +15,10 @@ jobs:
dotnet-version: 7.0.x

- name: Build with dotnet
run: dotnet build ./eShopOnWeb.sln --configuration Release
run: dotnet build ./Everything.sln --configuration Release /bl

- uses: microsoft/RichCodeNavIndexer@v0.1
with:
repo-token: ${{ github.token }}
repo-token: ${{ github.token }}
languages: 'csharp'
environment: 'internal'

0 comments on commit 257a838

Please sign in to comment.