8000 Add support for standalone publish pipeline by lbussell · Pull Request #1704 · dotnet/docker-tools · GitHub
[go: up one dir, main page]

Skip to content

Add support for standalone publish pipeline #1704

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 16 commits into from
May 28, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix syntax errors
  • Loading branch information
lbussell committed May 27, 2025
commit 85141735b2c05778724b1fa2a194b7c37abaf7b9
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ parameters:
variables:
- template: /eng/pipelines/templates/variables/image-builder.yml@self
parameters:
- sourceBuildId: ${{ parameters.sourceBuildId }}
sourceBuildId: ${{ parameters.sourceBuildId }}
- name: publishEolAnnotations
value: true

Expand Down
4 changes: 3 additions & 1 deletion eng/pipelines/templates/variables/build-test-publish.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
parameters:
- sourceBuildId: ""
- name: sourceBuildId
type: string
default: ''

variables:
- template: /eng/pipelines/templates/variables/common.yml@self
Expand Down
6 changes: 4 additions & 2 deletions eng/pipelines/templates/variables/common.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
parameters:
- sourceBuildId: ""
- name: sourceBuildId
type: string
default: ''

variables:
- template: /eng/common/templates/variables/dotnet/common.yml@self
parameters:
- sourceBuildId: ${{ parameters.sourceBuildId }}
sourceBuildId: ${{ parameters.sourceBuildId }}
4 changes: 3 additions & 1 deletion eng/pipelines/templates/variables/image-builder.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
parameters:
- sourceBuildId: ""
- name: sourceBuildId
type: string
default: ''

variables:
- template: /eng/pipelines/templates/variables/build-test-publish.yml@self
Expand Down
0