Skip to content

Commit 982b4f5

Browse files
committed
More needed changes
1 parent f4a4e78 commit 982b4f5

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

.pipelines/templates/module-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- group: DotNetPrivateBuildAccess
1818
- group: certificate_logical_to_actual
1919
- name: ob_sdl_sbom_enabled
20-
value: false
20+
value: true
2121
- name: ob_outputDirectory
2222
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
2323
- name: repoRoot

.pipelines/templates/nupkg-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- group: mscodehub-feed-read-akv
2727
- group: DotNetPrivateBuildAccess
2828
- name: ob_sdl_sbom_enabled
29-
value: false
29+
value: true
3030
- name: ob_sdl_codeql_compiled_enabled
3131
value: false
3232

.pipelines/templates/release-publish-module.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
pipeline: AIShellPackagePipeline
1616
artifactName: drop_module_package
1717
variables:
18-
- name: ob_outputDirectory
19-
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
2018
# Disable SBOM, signing, and codeQL for this job
2119
- name: ob_sdl_sbom_enabled
2220
value: false

.pipelines/templates/release-publish-nuget.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,27 @@ jobs:
1616
pipeline: AIShellPackagePipeline
1717
artifactName: drop_nupkg_package
1818
variables:
19-
- group: 'mscodehub-code-read-akv'
20-
- name: ob_outputDirectory
21-
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
19+
# Disable SBOM, signing, and codeQL for this job
20+
- name: ob_sdl_sbom_enabled
21+
value: false
22+
- name: ob_signing_setup_enabled
23+
value: false
24+
- name: ob_sdl_codeql_compiled_enabled
25+
value: false
2226

2327
steps:
24-
- task: PowerShell@2
28+
- task: PowerShell@2
2529
inputs:
2630
targetType: 'inline'
2731
script: |
28-
Get-ChildItem '$(Pipeline.Workspace)/drop_nupkg_package/*.nupkg' -recurse
32+
Get-ChildItem '$(Pipeline.Workspace)/*.nupkg' -recurse
2933
displayName: List nupkg package
3034

3135
- task: NuGetCommand@2
3236
displayName: 'NuGet push'
3337
condition: and(ne('${{ parameters.publish }}', 'false'), succeeded())
3438
inputs:
3539
command: push
36-
packagesToPush: '$(Pipeline.Workspace)/drop_nupkg_package/*.nupkg'
40+
packagesToPush: '$(Pipeline.Workspace)/*.nupkg'
3741
nuGetFeedType: external
3842
publishFeedCredentials: PowerShellNuGetOrgPush

0 commit comments

Comments
 (0)