Merge pull request #45 from TunNetCom/ConventionNaming #65
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: Publish NuGet Package | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
- name: Restore dependencies | |
run: dotnet restore src/AzureDevopsWebhookService/AzureDevopsWebhookService.Contracts/TunNetCom.AionTime.AzureDevops.WebhookService.Contracts.csproj | |
- name: Build Project | |
run: dotnet build src/AzureDevopsWebhookService/AzureDevopsWebhookService.Contracts/TunNetCom.AionTime.AzureDevops.WebhookService.Contracts.csproj --configuration Release --no-restore | |
- name: Pack NuGet Package | |
run: dotnet pack src/AzureDevopsWebhookService/AzureDevopsWebhookService.Contracts/TunNetCom.AionTime.AzureDevops.WebhookService.Contracts.csproj --configuration Release --output ./artifacts | |
- name: Publish NuGet Package | |
run: dotnet nuget push "./artifacts/*.nupkg" --api-key ${{ secrets.NUGET_SECRET_KEY_TUNNETCOM }} --source "https://api.nuget.org/v3/index.json" --skip-duplicate |