Skip to content

Support for development branch nuget package. #8

Support for development branch nuget package.

Support for development branch nuget package. #8

name: Test dependent packaging
on:
push:
branches:
- development
- master
paths-ignore:
- '.github/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
proj: [Monitoring.Test, Monitoring.Web.Test]
defaults:
run:
working-directory: ./src
name: Unit testing - ${{ matrix.proj }}
env:
PACKAGE_PROJECT_DIR: DR.Common.${{ matrix.proj }}
PACKAGE_PROJECT_NAME: DR.Common.${{ matrix.proj }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.workflow_run.head_branch }}
- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v2
with:
source-url: https://nuget.pkg.github.com/drdk/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Build test project and run tests
if: env.PACKAGE_PROJECT_NAME != ''
run: |
dotnet test './${{ env.PACKAGE_PROJECT_NAME }}/${{ env.PACKAGE_PROJECT_NAME }}.csproj' --logger "trx;LogFileName=test-results.trx"
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: DotNET Tests
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
deploy:
runs-on: ubuntu-latest
needs: test
strategy:
matrix:
proj: [Monitoring, Monitoring.Web]
defaults:
run:
working-directory: ./src
name: Update NuGet package - ${{ matrix.proj }}
env:
PACKAGE_PROJECT_DIR: DR.Common.${{ matrix.proj }}
PACKAGE_PROJECT_NAME: DR.Common.${{ matrix.proj }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.workflow_run.head_branch }}
- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v2
with:
source-url: https://nuget.pkg.github.com/drdk/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v7
- name: If not default branch, get branch name to add to Version
if: steps.branch-name.outputs.is_default == 'false'
run: |
echo "PR_BRANCH_NAME=-${{ steps.branch-name.outputs.current_branch }}" >> $GITHUB_ENV
- name: Update project file version
uses: jacobtomlinson/gha-find-replace@v1
with:
find: '(<Version>\d+\.\d+)\.(\d+)(<)'
replace: '$1.${{ github.run_number }}${{ env.PR_BRANCH_NAME }}$3'
include: './Directory.Build.props'
# Force GeneratePackageOnBuild to false since dotnet pack does not build when
# it is true (https://github.com/dotnet/sdk/issues/10335)
- name: Build solution and generate NuGet package
run: |
dotnet pack './${{ env.PACKAGE_PROJECT_DIR }}/${{ env.PACKAGE_PROJECT_NAME }}.csproj' -c Release -o out /p:GeneratePackageOnBuild=false
- name: Push generated package to GitHub registry
run: dotnet nuget push ./out/*.nupkg