Skip to content

Bump Microsoft.Azure.Cosmos from 3.41.0 to 3.44.0 in /src/FunctionApp #791

Bump Microsoft.Azure.Cosmos from 3.41.0 to 3.44.0 in /src/FunctionApp

Bump Microsoft.Azure.Cosmos from 3.41.0 to 3.44.0 in /src/FunctionApp #791

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Build project
on:
push:
branches:
- main
paths-ignore:
- "README.md"
pull_request:
workflow_dispatch:
permissions:
packages: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
project: [
"FunctionApp",
"Lib",
"AdminConsole"
]
env:
DOTNET_NOLOGO: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Install .NET tools
run: dotnet tool restore
- name: Update project files with gitversion
run: dotnet tool run dotnet-gitversion /updateprojectfiles
- name: Setup GitHub Packages source
run: dotnet nuget add source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --name github --username ${{ github.repository_owner }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
- name: Build project
shell: pwsh
run: dotnet restore "./src/${{ matrix.project }}/" ; dotnet build "./src/${{ matrix.project }}/"