Skip to content

Commit 154f71b

Browse files
authored
Merge pull request #384 from iclanton/fix-playground-publish
Fix playground publish.
2 parents 15d9e38 + f17126e commit 154f71b

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

common/config/azure-pipelines/playground-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
artifact: playground
4444
targetPath: $(Build.SourcesDirectory)
4545

46-
- template: ./templates/configure-git.yaml
46+
- template: /common/config/azure-pipelines/templates/configure-git.yaml@self
4747

4848
- script: |
4949
git add -A

common/config/azure-pipelines/templates/build.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
steps:
2-
- script: 'git config --local user.email rushbot@users.noreply.github.com'
3-
displayName: 'git config email'
4-
workingDirectory: '$(Agent.BuildDirectory)/tsdoc'
5-
6-
- script: 'git config --local user.name Rushbot'
7-
displayName: 'git config name'
8-
workingDirectory: '$(Agent.BuildDirectory)/tsdoc'
2+
- template: /common/config/azure-pipelines/templates/configure-git.yaml@self
93

104
- script: 'node common/scripts/install-run-rush.js change --verify'
115
displayName: 'Verify Change Logs'
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
steps:
2+
- script: 'git config --local user.email rushbot@users.noreply.github.com'
3+
displayName: 'git config email'
4+
workingDirectory: '$(Agent.BuildDirectory)/tsdoc'
5+
6+
- script: 'git config --local user.name Rushbot'
7+
displayName: 'git config name'
8+
workingDirectory: '$(Agent.BuildDirectory)/tsdoc'

0 commit comments

Comments
 (0)