Skip to content

Bump Azure.Identity from 1.4.0 to 1.10.2 in /Ibis.MutexLeaderElection.Sample #40

Bump Azure.Identity from 1.4.0 to 1.10.2 in /Ibis.MutexLeaderElection.Sample

Bump Azure.Identity from 1.4.0 to 1.10.2 in /Ibis.MutexLeaderElection.Sample #40

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Restore dependencies
run: dotnet restore Ibis.MutexLeaderElection/Ibis.MutexLeaderElection.csproj
- name: Build
run: dotnet build Ibis.MutexLeaderElection/Ibis.MutexLeaderElection.csproj --configuration Release
- name: Pack with dotnet
run: dotnet pack Ibis.MutexLeaderElection/Ibis.MutexLeaderElection.csproj --output nuget --configuration Release
- name: Upload Assembly Build Artifact
uses: actions/upload-artifact@v2
with:
name: Build output
path: /home/runner/work/Ibis.MutexLeaderElection/Ibis.MutexLeaderElection/Ibis.MutexLeaderElection/bin/Release/
- name: Upload Package Build Artifact
uses: actions/upload-artifact@v2
with:
name: Package output
path: nuget/*.nupkg
- name: Publish NuGet using Dotnet
run: dotnet nuget push nuget/*.nupkg --api-key ${{secrets.NUGET}} --skip-duplicate --source https://api.nuget.org/v3/index.json