Merge pull request #96 from thegrizzlylabs/fix-demo-ci #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: DotNetMaui | |
# Note: using the `branches` selector excludes all tags | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '16.0' | |
# Retry in case plugin is not yet available on nuget | |
- uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 2 | |
retry_wait_seconds: 300 | |
command: | | |
cd dotnet-maui | |
sudo dotnet workload restore | |
dotnet build SimpleDemo.csproj |