Fix using removed Dismiss overload #73
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 and publish | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install workloads | |
run: dotnet workload install -s https://api.nuget.org/v3/index.json android ios | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'microsoft' | |
java-version: '17' | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.0.2 | |
- name: Build number | |
run: echo "Build $env:GITHUB_RUN_NUMBER" | |
- name: Add NuGet feed | |
run: dotnet nuget add source --username filipnavara --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/filipnavara/index.json" | |
- name: Build | |
run: msbuild src/Acr.UserDialogs /p:Configuration=Release /p:BUILD_BUILDNUMBER=$env:GITHUB_RUN_NUMBER /restore | |
- name: Pack | |
run: msbuild src/Acr.UserDialogs /p:Configuration=Release /p:BUILD_BUILDNUMBER=$env:GITHUB_RUN_NUMBER /t:Pack | |
- uses: actions/upload-artifact@master | |
with: | |
name: build-artifacts | |
path: src/Acr.UserDialogs/bin | |
publish: | |
permissions: | |
packages: write | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.x | |
include-prerelease: true | |
- uses: actions/download-artifact@master | |
with: | |
name: build-artifacts | |
path: src/Acr.UserDialogs/bin | |
- name: Publish | |
if: ${{ github.event_name == 'push' }} | |
env: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
dotnet nuget add source https://nuget.pkg.github.com/emclient/index.json -n github | |
find src/Acr.UserDialogs/bin/Release -name '*.nupkg' | xargs -i dotnet nuget push {} -s github --api-key ${{ secrets.GITHUB_TOKEN }} |