Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorMichel Le Bihan <michel@lebihan.pl>2023-06-09 11:32:26 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-06-09 11:32:26 +0300
commit92451f3fc754d27e6b70d8b4bbbe8c16cfc16da3 (patch)
treeb4d4d6e06ed0e498693608cb9a43ca14cb120df8 /.ci
parent939133a959699da5da78413e6b4a99026cb287c5 (diff)
ci: Add Windows MSIX package build
Diffstat (limited to '.ci')
-rw-r--r--.ci/appveyor.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml
index 34bf84914..4deb05cdc 100644
--- a/.ci/appveyor.yml
+++ b/.ci/appveyor.yml
@@ -23,6 +23,7 @@ build_script:
- ps: |
$filename = "Gajim-$($env:GAJIM_VERSION)-$($env:ARCH)"
$filename_portable = "Gajim-Portable-$($env:GAJIM_VERSION)-$($env:ARCH)"
+ $filename_msixbundle = "Gajim-$($env:GAJIM_VERSION)"
if ($env:GAJIM_VERSION -eq "Nightly") {
$time_string=(get-date -UFormat "%Y-%m-%d").ToString()
@@ -43,6 +44,7 @@ build_script:
Push-AppveyorArtifact "$($buildroot)/Gajim.exe" -FileName "$($filename).exe"
Push-AppveyorArtifact "$($buildroot)/Gajim-Portable.exe" -FileName "$($filename_portable).exe"
+ Push-AppveyorArtifact "$($buildroot)/Gajim.msixbundle" -FileName "$($filename_msixbundle).msixbundle"
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
# on_finish: