Merge pull request #74 from lucacivale/#73 #43
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: Build for CI | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: [ "main" ] | |
env: | |
DOTNET_VERSION: '9.0.x' | |
PluginSolutionPath: 'src\Plugin.Maui.BottomSheet\Plugin.Maui.BottomSheet.sln' | |
Configuration: 'Release' | |
jobs: | |
Build-Plugin_Maui_BottomSheet: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Install .NET MAUI Workload | |
run: dotnet workload install maui --source https://api.nuget.org/v3/index.json | |
- name: Build Plugin.Maui.BottomSheet | |
run: dotnet build ${{ env.PluginSolutionPath }} -c ${{ env.Configuration }} | |