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 6785ec9 commit ec9cf64Copy full SHA for ec9cf64
azure-pipelines-1.yml
@@ -29,13 +29,16 @@ steps:
29
30
- task: PowerShell@2
31
displayName: "Commit Updated Icons"
32
+ env:
33
+ UserName: $(GitHubUser)
34
+ Password: $(GitHubPat)
35
inputs:
36
targetType: 'inline'
37
script: git config --global user.email "[email protected]/"
38
39
git config --global user.name "Azure Pipeline"
40
- git remote set-url origin https://$(GitHubUser):$(GitHubPat)@github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit.git
41
+ git remote set-url origin https://$(env:UserName):$(env:Password)@github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit.git
42
43
git commit -a -m "Icons update from Azure pipeline"
44
0 commit comments