Skip to content

Commit

Permalink
Update GHA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
justinyoo committed Nov 5, 2023
1 parent 968d9d5 commit e27c138
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/azure-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,23 @@ jobs:
with:
msbuild-architecture: 'x64'

- name: Setup NuGet package
if: matrix.os == 'windows-latest'
uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'

- name: Restore NuGet packages - Ubuntu
if: matrix.os == 'ubuntu-latest'
shell: bash
run: |
dotnet restore YouTubeSummariser.sln
# - name: Restore NuGet packages - Windows
# if: matrix.os == 'windows-latest'
# shell: pwsh
# run: |
# dotnet restore YouTubeSummariserWin.sln
- name: Restore NuGet packages - Windows
if: matrix.os == 'windows-latest'
shell: pwsh
run: |
nuget restore YouTubeSummariserWin.sln
- name: Build solution - Ubuntu
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit e27c138

Please sign in to comment.