Skip to content

build(deps): bump Azure.Identity from 1.8.2 to 1.10.2 in /src/FluentEmail.Graph #357

build(deps): bump Azure.Identity from 1.8.2 to 1.10.2 in /src/FluentEmail.Graph

build(deps): bump Azure.Identity from 1.8.2 to 1.10.2 in /src/FluentEmail.Graph #357

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
MINVERBUILDMETADATA: build.$GITHUB_RUN_ATTEMPT
steps:
- name: ☁ Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 👷 .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0"
- name: ⬇ Install dependencies
run: dotnet restore
- name: 🔨 Build
run: dotnet build --configuration Release --no-restore /p:MinVerBuildMetadata=${{ github.run_number }}
# # - name: Test
# # run: dotnet test --no-restore --verbosity normal
- name: 📦 Pack
run: dotnet pack ./src/FluentEmail.Graph/FluentEmail.Graph.csproj -c Release -o ./artifacts --no-build
- name: 🔑 Add GitHub packages to nuget sources
run: dotnet nuget add source --username USERNAME --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/ESC-BV/index.json"
- name: 🚀 Publish to GitHub packages
run: dotnet nuget push "./artifacts/*.nupkg" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }}