Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Job Id to the Signed_Binaries pipeline artifact name #609

Merged
merged 3 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.31] - 2024-1-28
## [1.0.32] - 2024-3-04
### Pipeline
Improvement to pipeline to allow rerunning failed deploy jobs.

## [1.0.31] - 2024-2-28
### Sarif Format
Populate additional fields for GitHub Code scanning

Expand Down
2 changes: 1 addition & 1 deletion Pipelines/cli/devskim-cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ stages:
displayName: Publish Signed Artifacts to Pipeline
inputs:
targetPath: '$(Build.StagingDirectory)'
artifact: 'Signed_Binaries'
artifact: 'Signed_Binaries_$(System.JobId)_$(System.JobAttempt)'
- task: NuGetCommand@2
displayName: Publish NuGet Packages
inputs:
Expand Down
2 changes: 1 addition & 1 deletion Pipelines/vs/devskim-visualstudio-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ stages:
displayName: Publish Signed Artifact to Pipeline
inputs:
targetPath: '$(Build.StagingDirectory)'
artifact: 'Signed_Extension'
artifact: 'Signed_Extension_$(System.JobId)_$(System.JobAttempt)'
- task: PowerShell@2
displayName: Move VS Marketplace Manifest
inputs:
Expand Down
2 changes: 1 addition & 1 deletion Pipelines/vscode/devskim-vscode-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ stages:
displayName: Publish Signed Artifact to Pipeline
inputs:
targetPath: '$(Build.StagingDirectory)'
artifact: 'Signed_Plugin'
artifact: 'Signed_Plugin_$(System.JobId)_$(System.JobAttempt)'
- task: Npm@1
displayName: Install vsce
inputs:
Expand Down
Loading