We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 792cdba commit 9069c1bCopy full SHA for 9069c1b
azure-pipelines-1.yml
@@ -7,10 +7,15 @@ variables:
7
buildConfiguration: 'Release'
8
9
steps:
10
-- checkout: self
11
- persistCredentials: "true"
12
13
-- powershell: git checkout -b pipeline/icons
+- task: PowerShell@2
+ displayName: "Git Clean"
+ env:
14
+ UserName: $(GitHubUser)
15
+ Password: $(GitHubPat)
16
+ inputs:
17
+ targetType: 'inline'
18
+ script: 'git clean -f'
19
20
- powershell: .paket\paket.exe restore
21
@@ -20,8 +25,6 @@ steps:
25
platform: '$(buildPlatform)'
26
configuration: '$(buildConfiguration)'
22
27
23
24
-
28
- task: PowerShell@2
29
displayName: "Generate Icons"
30
inputs:
0 commit comments