Skip to content

Commit

Permalink
Explicitly reference Controls project rather than via matrix in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter authored Dec 14, 2024
1 parent 1b5d101 commit e44185a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
- Riverside.Markup.CompilerServices
- Riverside.Markup.InteropServices
# Add more projects here as needed
windows_project:
- Riverside.Markup.Controls
os: [windows-latest, ubuntu-latest, macos-latest]

outputs:
Expand All @@ -42,14 +40,14 @@ jobs:

- name: Build project (Windows)
if: matrix.os == 'windows-latest'
run: dotnet build src/${{ matrix.windows_project }}/${{ matrix.windows_project }}.csproj --configuration Release --no-restore
run: dotnet build src/Riverside.Markup.Controls/Riverside.Markup.Controls.csproj --configuration Release --no-restore

- name: Pack project
run: dotnet pack src/${{ matrix.project }}/${{ matrix.project }}.csproj --configuration Release --no-build -o ./output

- name: Pack project (Windows)
if: matrix.os == 'windows-latest'
run: dotnet pack src/${{ matrix.windows_project }}/${{ matrix.windows_project }}.csproj --configuration Release --no-build -o ./output
run: dotnet pack src/Riverside.Markup.Controls/Riverside.Markup.Controls.csproj --configuration Release --no-build -o ./output

- name: Normalize project name
id: normalize_name
Expand Down

0 comments on commit e44185a

Please sign in to comment.