You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-pipelines.release-publish.yml
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,25 @@
1
1
trigger: none
2
2
pr: none
3
3
4
+
parameters:
5
+
- name: _REMINDER
6
+
default: Review & undraft the release at https://github.com/microsoft/TypeScript/releases once it appears!
7
+
- name: PUBLISH_TAG
8
+
default: dev
9
+
- name: RELEASE_TITLE_NAME
10
+
default: 0.0.0 Test
11
+
- name: TAG_NAME
12
+
default: v0.0.0-SetMe
13
+
4
14
variables:
5
15
- name: _REMINDER
6
-
value: Review & undraft the release at https://github.com/microsoft/TypeScript/releases once it appears!
16
+
value: ${{ parameters._REMINDER }}
7
17
- name: PUBLISH_TAG
8
-
value: dev
18
+
value: ${{ parameters.PUBLISH_TAG }}
9
19
- name: RELEASE_TITLE_NAME
10
-
value: 0.0.0 Test
20
+
value: ${{ parameters.RELEASE_TITLE_NAME }}
11
21
- name: TAG_NAME
12
-
value: v0.0.0-SetMe
22
+
value: ${{ parameters.TAG_NAME }}
13
23
14
24
resources:
15
25
pipelines:
@@ -54,6 +64,7 @@ extends:
54
64
artifactName: 'tgz'
55
65
targetPath: '$(Pipeline.Workspace)/tgz'
56
66
steps:
67
+
- checkout: none
57
68
- task: CmdLine@2
58
69
displayName: Rename versioned drop to typescript.tgz
0 commit comments