test6 #9
Workflow file for this run
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: MAUI CI | |
on: | |
push: | |
jobs: | |
Build: | |
runs-on: macOS-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Android SDK 34 | |
run: | | |
yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --install "platforms;android-34" | |
- name: Install MAUI workload | |
run: dotnet workload install maui | |
- name: Build artifacts | |
run: ./build.sh |