Browse Source

Hopefully fixed zip publish and installer name

flabbet 4 years ago
parent
commit
2548c29b9a

+ 1 - 1
Installer/installer-setup-x64-light.iss

@@ -2,7 +2,7 @@
 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
 
 
 #define MyAppName "PixiEditor"
 #define MyAppName "PixiEditor"
-#define MyAppVersion GetFileVersion("..\Builds\PixiEditor-x64-light\PixiEditor.exe")     ;Not perfect solution, it's enviroment dependend
+#define MyAppVersion GetFileVersion("..\Builds\PixiEditor-x64-light\PixiEditor\PixiEditor.exe")     ;Not perfect solution, it's enviroment dependend
 #define MyAppPublisher "PixiEditor"
 #define MyAppPublisher "PixiEditor"
 #define MyAppURL "https://github.com/PixiEditor/PixiEditor"
 #define MyAppURL "https://github.com/PixiEditor/PixiEditor"
 #define MyAppExeName "PixiEditor.exe"
 #define MyAppExeName "PixiEditor.exe"

+ 1 - 1
Installer/installer-setup-x64.iss

@@ -2,7 +2,7 @@
 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
 
 
 #define MyAppName "PixiEditor"
 #define MyAppName "PixiEditor"
-#define MyAppVersion GetFileVersion("..\Builds\PixiEditor-x64\PixiEditor.exe")     ;Not perfect solution, it's enviroment dependend
+#define MyAppVersion GetFileVersion("..\Builds\PixiEditor-x64\PixiEditor\PixiEditor.exe")     ;Not perfect solution, it's enviroment dependend
 #define MyAppPublisher "PixiEditor"
 #define MyAppPublisher "PixiEditor"
 #define MyAppURL "https://github.com/PixiEditor/PixiEditor"
 #define MyAppURL "https://github.com/PixiEditor/PixiEditor"
 #define MyAppExeName "PixiEditor.exe"
 #define MyAppExeName "PixiEditor.exe"

+ 1 - 1
windows-x64-release.yml

@@ -92,7 +92,7 @@ steps:
 - task: PublishPipelineArtifact@1
 - task: PublishPipelineArtifact@1
   displayName: "Publish zip artifact"
   displayName: "Publish zip artifact"
   inputs:
   inputs:
-    targetPath: '$(System.DefaultWorkingDirectory)'
+    targetPath: '$(System.DefaultWorkingDirectory)\PixiEditor.$(TagVersion).x64.zip'
     artifact: 'PixiEditor.$(TagVersion).x64.zip'
     artifact: 'PixiEditor.$(TagVersion).x64.zip'
     publishLocation: 'pipeline'
     publishLocation: 'pipeline'
 
 

+ 1 - 1
windows-x86-release.yml

@@ -87,7 +87,7 @@ steps:
 - task: PublishPipelineArtifact@1
 - task: PublishPipelineArtifact@1
   displayName: "Publish zip artifact"
   displayName: "Publish zip artifact"
   inputs:
   inputs:
-    targetPath: '$(System.DefaultWorkingDirectory)'
+    targetPath: '$(System.DefaultWorkingDirectory)\PixiEditor.$(TagVersion).x86.zip'
     artifact: 'PixiEditor.$(TagVersion).x86.zip'
     artifact: 'PixiEditor.$(TagVersion).x86.zip'
     publishLocation: 'pipeline'
     publishLocation: 'pipeline'