Skip to content
Merged
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
30 changes: 24 additions & 6 deletions eng/pipelines/release-staging.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
# This pipeline takes the current branch and builds and tests the images,
# but does not publish them.
#
# The images can later be published by running the release-promotion pipeline.

trigger: none
pr: none

resources:
repositories:
- repository: InternalVersionsRepo
type: github
endpoint: dotnet
name: dotnet/versions

variables:
- template: /eng/pipelines/variables/core.yml@self

extends:
template: /eng/common/templates/1es-official.yml@self
stages:
- stage: release-staging
jobs:
- job: release-staging
steps:
- script: echo "Hello world"
parameters:
stages:
- template: /eng/pipelines/stages/build-and-test.yml@self
parameters:
internalProjectName: ${{ variables.internalProjectName }}
publicProjectName: ${{ variables.publicProjectName }}
# We always want staged images to be as up-to-date as possible,
# so don't rely on any caching behavior.
noCache: true