Skip to content
This repository was archived by the owner on Apr 30, 2024. It is now read-only.

Commit 4aeed35

Browse files
committed
Added directory creation step
1 parent 94ce535 commit 4aeed35

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

azure-pipelines-package-alpha.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ variables:
1717
solution: '**/Quarrel.App.sln'
1818
buildPlatform: 'x86|x64|arm|arm64'
1919
buildConfiguration: 'Alpha'
20+
installerDirectory: '$(System.DefaultWorkingDirectory)\QuarrelInstaller'
2021
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
2122
buildDir: '$(build.artifactStagingDirectory)\build\\'
2223
msixUploads: '$(appxPackageDir)\**\\*.msixupload'
@@ -86,12 +87,13 @@ steps:
8687
# $(msixBundles)
8788
# $(msixPackages)
8889
# $(appInstaller)
89-
90+
9091
- script: |
92+
md $(installerDirectory)
93+
cd $(installerDirectory)
9194
git config --global user.email $(GitHub-Email) & git config --global user.password $(GitHub-Token)
9295
git checkout https://github.com/QuarrelForDiscord/QuarrelInstaller.git
9396
displayName: Clone QuarrelInstaller repo
94-
workingDirectory: $(System.DefaultWorkingDirectory)\QuarrelInstaller
9597

9698
#- task: CopyFiles@2
9799
# displayName: Copy artifacts to QuarrelInstaller repo
@@ -103,7 +105,7 @@ steps:
103105
- script: |
104106
echo 'This is a test' > test.txt
105107
displayName: Test add file
106-
workingDirectory: $(System.DefaultWorkingDirectory)\QuarrelInstaller
108+
workingDirectory: $(installerDirectory)
107109

108110
- script: |
109111
git add *

0 commit comments

Comments
 (0)