-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Artifact Powered Docs.MS Release #11395
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0c9a72f
docs ms release
scbedd 12c50c8
abstracting stage-filtered-artifacts
scbedd 4b8c329
abstract the metadata copy
scbedd 0040e49
discovered a unreplaced reference to artifact.name
scbedd 8d83f96
update to also use the same staging script for all the release stages
scbedd 1994964
integration bugfix discovered in release attempt
scbedd 3f04b7f
remove some dependson
scbedd b573b15
allow verify to succeed
scbedd bb43f6a
bugfixes!
scbedd f4d787a
handle missing _ prefix
scbedd a7280e4
handle errors
scbedd 045a9e3
ensuring correct arguments
scbedd 1476a26
pass the analyze step for a real release
scbedd 664142e
updates to correct ordering of the job definitions. make everything d…
scbedd 5739bb7
Merge branch 'master' into feature/docsms-release
scbedd 9bb827b
resolve whitespace conflict
scbedd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
eng/pipelines/templates/steps/stage-filtered-artifacts.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| parameters: | ||
| SourceFolder: '' # ArtifactName (aka "packages") | ||
| TargetFolder: '' # artifact.safename (azuretemplate) | ||
| PackageName: '' # artifact.name (azure-template) | ||
| AdditionalRegex: '-[0-9]*.[0-9]*.[0-9]*' | ||
|
|
||
| steps: | ||
| - pwsh: | | ||
| New-Item -Type Directory -Name ${{parameters.TargetFolder}} -Path $(Pipeline.Workspace) | ||
| $underscorePrefix = "${{parameters.PackageName}}" | ||
| $dashPrefix = "${{parameters.PackageName}}".Replace("_", "-") | ||
| Copy-Item $(Pipeline.Workspace)/${{parameters.SourceFolder}}/$dashPrefix${{parameters.AdditionalRegex}} $(Pipeline.Workspace)/${{parameters.TargetFolder}} | ||
| Copy-Item $(Pipeline.Workspace)/${{parameters.SourceFolder}}/$underscorePrefix${{parameters.AdditionalRegex}} $(Pipeline.Workspace)/${{parameters.TargetFolder}} -ErrorAction SilentlyContinue | ||
| displayName: Stage artifacts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| # matches SEMVER | ||
| VERSION = "0.0.3" | ||
| VERSION = "0.0.6" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.