Skip to content

Commit 71abd77

Browse files
committed
Clarify publishTarget labels: test vs production
1 parent 18e024d commit 71abd77

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.Pipelines/pipeline-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ parameters:
2727
displayName: 'Publish target'
2828
type: string
2929
values:
30-
- MSAL-Python # publishes to test.pypi.org (staging / preview)
31-
- pypi # publishes to PyPI (production)
30+
- 'test.pypi.org (Preview / RC)' # publishes to test.pypi.org (staging / preview)
31+
- 'pypi.org (Production)' # publishes to PyPI (production)
3232

3333
trigger: none # manual runs only — no automatic branch or tag triggers
3434
pr: none
@@ -125,7 +125,7 @@ stages:
125125
condition: >
126126
and(
127127
succeeded(),
128-
eq('${{ parameters.publishTarget }}', 'MSAL-Python')
128+
eq('${{ parameters.publishTarget }}', 'test.pypi.org (Preview / RC)')
129129
)
130130
jobs:
131131
- deployment: DeployMSALPython
@@ -156,7 +156,7 @@ stages:
156156
condition: >
157157
and(
158158
succeeded(),
159-
eq('${{ parameters.publishTarget }}', 'pypi')
159+
eq('${{ parameters.publishTarget }}', 'pypi.org (Production)')
160160
)
161161
jobs:
162162
- deployment: DeployPyPI

0 commit comments

Comments
 (0)