Skip to content

Media3

Media3 #92

Workflow file for this run

name: Dotnet build & publish
on:
push:
branches: [ media3 ]
pull_request:
branches: [ media3 ]
jobs:
build:
env:
SOLUTION: 'Media3.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: dotnet build --configuration Release
- 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