Skip to content

Commit 7979f26

Browse files
Corrected Sign Extension step
1 parent 3179a52 commit 7979f26

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.azure-pipelines/common-steps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ steps:
3939
displayName: Install VSCE
4040

4141
- script: |
42-
vsce package -o extension.vsix
42+
npx @vscode/vsce package -o extension.vsix
4343
displayName: Create VSIX
4444

4545
- script: |
46-
vsce generate-manifest -i extension.vsix -o extension.manifest
46+
npx @vscode/vsce generate-manifest -i extension.vsix -o extension.manifest
4747
displayName: Create VSIX Manifest
4848

4949
- script: |
@@ -58,7 +58,7 @@ steps:
5858
AuthAKVName: $(AuthAKVName)
5959
AuthCertName: $(AuthCertName)
6060
AuthSignCertName: $(AuthSignCertName)
61-
FolderPath: '$(Build.ArtifactStagingDirectory)'
61+
FolderPath: '$(Build.SourcesDirectory)'
6262
Pattern: 'extension.signature.p7s'
6363
signConfigType: inlineSignParams
6464
inlineOperation: |

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ All of the material changes in this version were courtesy of @50Wliu. Thanks!
208208
- Syntax highlighting for Azure Pipelines files
209209
- Intellisense for Azure Pipelines files
210210

211-
## 1.247.2
211+
## 1.247.2-beta-0.9
212212
### Added
213213
- Added ESRP Esrp CodeSigning step
214214
- Updated build generation to sign the VSIX

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "azure-pipelines",
33
"displayName": "Azure Pipelines",
44
"description": "Syntax highlighting, IntelliSense, and more for Azure Pipelines YAML",
5-
"version": "1.247.2",
5+
"version": "1.247.2-beta-0.9",
66
"publisher": "ms-azure-devops",
77
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
88
"repository": {

0 commit comments

Comments
 (0)