Skip to content

Commit

Permalink
add net worker steps to 1ES official build (#2898)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Aug 13, 2024
1 parent 8daed98 commit d017919
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions eng/templates/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ jobs:
pattern: '*DurableTask.dll'
signType: dll

- template: ci/sign-files.yml@eng
parameters:
displayName: Sign assemblies
folderPath: 'src/Worker.Extensions.DurableTask/bin/Release'
pattern: '*DurableTask.dll'
signType: dll

# dotnet pack
# Packaging needs to be a separate step from build.
# This will automatically pick up the signed DLLs.
Expand All @@ -66,6 +73,19 @@ jobs:
packDirectory: $(build.artifactStagingDirectory)
nobuild: true


# dotnet pack
# Packaging needs to be a separate step from build.
# This will automatically pick up the signed DLLs.
- task: DotNetCoreCLI@2
displayName: 'dotnet pack Worker.Extensions.DurableTask.csproj'
inputs:
command: pack
packagesToPack: 'src/**/Worker.Extensions.DurableTask.csproj'
configuration: Release
packDirectory: $(build.artifactStagingDirectory)
nobuild: true

# Remove redundant symbol package(s)
- script: |
echo *** Searching for .symbols.nupkg files to delete...
Expand Down

0 comments on commit d017919

Please sign in to comment.