Skip to content

Commit

Permalink
Update pipeline so that .NET 8 and .NET 6 artifacts are published (#1…
Browse files Browse the repository at this point in the history
…0240)

* change

* addressing nit comment
  • Loading branch information
aishwaryabh authored Jun 24, 2024
1 parent 7ff67aa commit 0eb62c2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions eng/ci/templates/official/jobs/build-artifacts-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,30 @@ jobs:
Contents: '**/*.zip'
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: PowerShell@2
displayName: Build artifacts (.NET 6)
inputs:
filePath: build/build-extensions.ps1
arguments: '-buildNumber "$(buildNumber)" -suffix "$(suffix)" -minorVersionPrefix "6"'

- task: CopyFiles@2
inputs:
SourceFolder: out/pub/WebJobs.Script.WebHost
Contents: '**/*.zip'
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: PowerShell@2
displayName: Build artifacts (.NET 8)
inputs:
filePath: build/build-extensions.ps1
arguments: '-buildNumber "$(buildNumber)" -suffix "$(suffix)" -minorVersionPrefix "8"'

- task: CopyFiles@2
inputs:
SourceFolder: out/pub/WebJobs.Script.WebHost
Contents: '**/*.zip'
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: DotNetCoreCLI@2
displayName: Build host packages
inputs:
Expand Down

0 comments on commit 0eb62c2

Please sign in to comment.