Skip to content

Merge pull request #164 from Baseflow/dependabot/nuget/Xamarin.Androi… #88

Merge pull request #164 from Baseflow/dependabot/nuget/Xamarin.Androi…

Merge pull request #164 from Baseflow/dependabot/nuget/Xamarin.Androi… #88

Workflow file for this run

name: Dotnet build & publish
on:
push:
branches: [ develop, main, xamarin ]
pull_request:
branches: [ develop, xamarin ]
jobs:
build:
env:
SOLUTION: 'ExoPlayer.sln'
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1.3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install MAUI Workloads
run: |
dotnet workload install android --ignore-failed-sources
dotnet workload install maui --ignore-failed-sources
- name: Install dependencies
run: dotnet restore $SOLUTION
- name: Build
run: msbuild $SOLUTION -p:Configuration=Release -p:RestorePackages=false -verbosity:minimal
- name: Publish
if: startsWith(github.ref, 'refs/heads/main')
run: dotnet nuget push artifacts\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.PUBLISH_TO_NUGET_ORG}} --skip-duplicate
- name: Publish Xamarin
if: startsWith(github.ref, 'refs/heads/xamarin')
run: dotnet nuget push artifacts\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.PUBLISH_TO_NUGET_ORG}} --skip-duplicate