Skip to content

Commit

Permalink
Temp workaround to include custom nuget feed for webapi in build pipe…
Browse files Browse the repository at this point in the history
…line
  • Loading branch information
TaoChenOSU committed Aug 11, 2023
1 parent 231bb07 commit 774975f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/copilot-build-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:

runs-on: ${{ matrix.os }}

environment: feature-semantic-memory

env:
NUGET_CERT_REVOCATION_MODE: offline

Expand All @@ -35,6 +37,14 @@ jobs:
with:
clean: true

- name: Add custom nuget source
run: |
dotnet nuget add source "https://pkgs.dev.azure.com/msctoproj/Lightspeed/_packaging/SemanticMemoryPrivate/nuget/v3/index.json" \
--name SemanticMemoryPrivate \
--username az \
--password ${{ secrets.AZURE_DEVOPS_PAT }} \
--store-password-in-clear-text
- name: Package Copilot Chat WebAPI
run: |
scripts\deploy\package-webapi.ps1 -Configuration Release -DotnetFramework net6.0 -TargetRuntime win-x64 -OutputDirectory ${{ github.workspace }}\scripts\deploy
Expand Down

0 comments on commit 774975f

Please sign in to comment.