Skip to content

Commit 79f2c77

Browse files
authored
Update pipeline YAML files for repo name change (#305)
1 parent 9aabded commit 79f2c77

10 files changed

+13
-13
lines changed

.pipelines/Build-Official.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ extends:
5555
enabled: false
5656
sbom:
5757
enabled: true
58-
buildComponentPath: $(Build.SourcesDirectory)\ProjectMercury\shell
58+
buildComponentPath: $(Build.SourcesDirectory)\AIShell\shell
5959
codeql:
6060
compiled:
6161
enabled: true

.pipelines/templates/linux-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: ob_outputDirectory
1717
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
1818
- name: repoRoot
19-
value: $(Build.SourcesDirectory)\ProjectMercury
19+
value: $(Build.SourcesDirectory)\AIShell
2020
- name: ob_sdl_sbom_enabled
2121
value: false
2222
- name: ob_sdl_codeSignValidation_enabled
@@ -116,7 +116,7 @@ jobs:
116116
- name: ob_outputDirectory
117117
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
118118
- name: repoRoot
119-
value: $(Build.SourcesDirectory)\ProjectMercury
119+
value: $(Build.SourcesDirectory)\AIShell
120120
- name: ob_sdl_codeSignValidation_enabled
121121
value: false
122122
- name: ob_sdl_binskim_enabled

.pipelines/templates/mac-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- name: ob_outputDirectory
8282
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
8383
- name: repoRoot
84-
value: $(Build.SourcesDirectory)\ProjectMercury
84+
value: $(Build.SourcesDirectory)\AIShell
8585
- name: ob_sdl_codeSignValidation_enabled
8686
value: true
8787
- name: ob_sdl_tsa_configFile

.pipelines/templates/module-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: ob_outputDirectory
1414
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
1515
- name: repoRoot
16-
value: $(Build.SourcesDirectory)\ProjectMercury
16+
value: $(Build.SourcesDirectory)\AIShell
1717
- name: ob_sdl_sbom_enabled
1818
value: false
1919
- name: ob_sdl_codeSignValidation_enabled
@@ -109,7 +109,7 @@ jobs:
109109
- name: ob_outputDirectory
110110
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
111111
- name: repoRoot
112-
value: $(Build.SourcesDirectory)\ProjectMercury
112+
value: $(Build.SourcesDirectory)\AIShell
113113
- name: ob_sdl_codeSignValidation_enabled
114114
value: false
115115
- name: ob_sdl_binskim_enabled

.pipelines/templates/module-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: ob_outputDirectory
2222
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
2323
- name: repoRoot
24-
value: $(Build.SourcesDirectory)/ProjectMercury
24+
value: $(Build.SourcesDirectory)/AIShell
2525
- name: ob_sdl_binskim_enabled
2626
value: true
2727
- name: ob_sdl_tsa_configFile

.pipelines/templates/nupkg-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: ob_outputDirectory
1818
value: '$(Build.ArtifactStagingDirectory)\ONEBRANCH_ARTIFACT'
1919
- name: repoRoot
20-
value: $(Build.SourcesDirectory)\ProjectMercury
20+
value: $(Build.SourcesDirectory)\AIShell
2121
- name: ob_sdl_binskim_enabled
2222
value: true
2323
- name: ob_sdl_tsa_configFile

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: ob_outputDirectory
1212
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
1313
- name: ob_sdl_tsa_configFile
14-
value: $(Build.SourcesDirectory)\ProjectMercury\.config\tsaoptions.json
14+
value: $(Build.SourcesDirectory)\AIShell\.config\tsaoptions.json
1515

1616
steps:
1717
- checkout: self
@@ -82,7 +82,7 @@ jobs:
8282
Import-module '$(Pipeline.Workspace)\tools\Scripts\GitHubRelease.psm1'
8383
$releaseTag = 'v$(ReleaseVersion)'
8484
$description = '<!-- TODO: Generate release notes on GitHub! -->'
85-
Publish-ReleaseDraft -Tag $releaseTag -Name "$releaseTag Release of AIShell" -Description $description -User PowerShell -Repository ProjectMercury -PackageFolder $(PackagesRoot) -Token $(GitHubReleasePat)
85+
Publish-ReleaseDraft -Tag $releaseTag -Name "$releaseTag Release of AIShell" -Description $description -User PowerShell -Repository AIShell -PackageFolder $(PackagesRoot) -Token $(GitHubReleasePat)
8686
displayName: Publish Release Draft
8787
8888
- template: /.pipelines/templates/wait-for-approval.yml@self

.pipelines/templates/windows-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: ob_outputDirectory
1818
value: '$(Build.ArtifactStagingDirectory)/ONEBRANCH_ARTIFACT'
1919
- name: repoRoot
20-
value: $(Build.SourcesDirectory)\ProjectMercury
20+
value: $(Build.SourcesDirectory)\AIShell
2121
- name: ob_sdl_codeSignValidation_enabled
2222
value: false
2323
- name: ob_sdl_binskim_enabled

.pipelines/templates/windows-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: ob_outputDirectory
2727
value: '$(Build.ArtifactStagingDirectory)\ONEBRANCH_ARTIFACT'
2828
- name: repoRoot
29-
value: $(Build.SourcesDirectory)\ProjectMercury
29+
value: $(Build.SourcesDirectory)\AIShell
3030
- name: ob_sdl_binskim_enabled
3131
value: true
3232
- name: ob_sdl_tsa_configFile

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ bugs, suggestions, or feedback. If you would like to give more candid feedback a
173173
[07]: ./shell/agents/AIShell.Interpreter.Agent/README.md
174174
[08]: https://learn.microsoft.com/powershell/utility-modules/aishell/how-to/agent-openai
175175
[09]: https://dotnet.microsoft.com/en-us/download
176-
[10]: https://github.com/PowerShell/ProjectMercury/issues
176+
[10]: https://github.com/PowerShell/AIShell/issues
177177
[11]: https://learn.microsoft.com/powershell/scripting/install/installing-powershell
178178
[12]: ./docs/SECURITY.md
179179
[13]: https://learn.microsoft.com/powershell/utility-modules/aishell/install-aishell

0 commit comments

Comments
 (0)