diff --git a/.github/actions/spelling/expect/expect.txt b/.github/actions/spelling/expect/expect.txt index 326a70423f..3afa4c4765 100644 --- a/.github/actions/spelling/expect/expect.txt +++ b/.github/actions/spelling/expect/expect.txt @@ -237,6 +237,7 @@ charlespetzold charset CHARSETINFO chcp +Checkin checkbox checkboxes chh @@ -318,6 +319,7 @@ concat concfg conclnt conddkrefs +condev condrv conechokey conemu @@ -672,6 +674,7 @@ dwriteglyphrundescriptionclustermap dxgi dxgidwm dxinterop +dxp dxsm dxttbmp Dyreen @@ -1152,6 +1155,7 @@ ioctl iomanip iostream iot +ipa ipch ipconfig IPersist @@ -1475,6 +1479,7 @@ MSGSELECTMODE msiexec MSIL msix +mspartners msrc msvcrt MSVCRTD @@ -2668,6 +2673,7 @@ wddmcon wddmconrenderer WDDMCONSOLECONTEXT wdm +wdx webclient webpage website @@ -2702,6 +2708,7 @@ wincontypes WINCORE windbg WINDEF +windev WINDIR windll WINDOWALPHA diff --git a/build/config/GitCheckin.json b/build/config/GitCheckin.json new file mode 100644 index 0000000000..8bfcb20302 --- /dev/null +++ b/build/config/GitCheckin.json @@ -0,0 +1,24 @@ +{ + "Branch": [ + { + "collection": "microsoft", + "project": "OS", + "repo": "os.2020", + "name": "official/rs_wdx_dxp_windev", + "workitem": "38106206", + "CheckinFiles": [ + { + "source": "WindowsTerminal.app.man", + "path": "/redist/mspartners/ipa/WindowsTerminal", + "type": "File" + } + ] + } + ], + "Email": [ + { + "sendTo": "condev", + "sendOnErrorOnly": "False" + } + ] + } \ No newline at end of file diff --git a/build/pipelines/release.yml b/build/pipelines/release.yml index 99cbf44bbb..826455abd0 100644 --- a/build/pipelines/release.yml +++ b/build/pipelines/release.yml @@ -529,7 +529,18 @@ jobs: SYSTEM_ACCESSTOKEN: $(System.AccessToken) inputs: sourceDirectory: $(System.ArtifactsDirectory)\appxbundle-signed\WindowsTerminal.app - description: Windows Terminal pre-install application + description: VPack for the Windows Terminal Application pushPkgName: WindowsTerminal.app - owner: condev + owner: conhost + - task: PublishPipelineArtifact@1 + displayName: 'Copy VPack Manifest to Drop' + inputs: + targetPath: $(XES_VPACKMANIFESTDIRECTORY) + artifactName: VPackManifest + - task: PkgESFCIBGit@12 + displayName: 'Submit VPack Manifest to Windows' + inputs: + configPath: '$(Build.SourcesDirectory)\build\config\GitCheckin.json' + artifactsDirectory: $(XES_VPACKMANIFESTDIRECTORY) + prTimeOut: 5 ...