Bump Square.OkHttp3 from 4.9.3.2 to 4.12.0 #105
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: 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 |