Skip to content

Commit

Permalink
Update ci-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPulman committed Feb 4, 2024
1 parent 5420ca4 commit e8196b9
Showing 1 changed file with 28 additions and 10 deletions.
38 changes: 28 additions & 10 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,31 @@ env:
productNamespacePrefix: "ReactiveMvvm"

jobs:
build:
uses: reactiveui/actions-common/.github/workflows/workflow-common-setup-and-build.yml@main
with:
configuration: Release
productNamespacePrefix: "ReactiveMvvm"
useVisualStudioPreview: false
useMauiCheckDotNetTool: false
installWindowsSdk: false
installWorkflows: false
solutionFile: 'ReactiveMvvm.sln'
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 'Setup Java JDK 11'
uses: actions/[email protected]
with:
distribution: 'microsoft'
java-version: '11'

- name: 'Install DotNet workloads'
shell: bash
run: |
dotnet workload install android ios tvos macos maui maccatalyst wasm-tools-net7
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: RunInteractive'
run: ./build.cmd RunInteractive

0 comments on commit e8196b9

Please sign in to comment.