metadata.xml 20241002 ~ 3.6.0 ExO Release (+5 days) #27
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: ci | |
on: | |
push: | |
paths-ignore: | |
- 'readme.md' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore src | |
- name: Build | |
run: dotnet build src --no-restore | |
- name: Create NuGet package | |
run: dotnet pack src/AdminApiClient.For.ExchangeOnline/AdminApiClient.For.ExchangeOnline.csproj -c Release | |
- name: Upload NuGet package artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NuGet package | |
path: src/AdminApiClient.For.ExchangeOnline/bin/Release/*.nupkg |