From 05a2841f3812c9340388772c7597b7ae55abffbb Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 6 Aug 2023 10:10:54 -0400 Subject: [PATCH] Separate flatpak and cmake build dirs on CI --- .build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.build.yml b/.build.yml index 4e1560f..3a78d2b 100644 --- a/.build.yml +++ b/.build.yml @@ -22,10 +22,10 @@ tasks: reuse lint - configure: | cd astra - cmake -S . -B build + cmake -S . -B build-cmake - build: | cd astra - cmake --build build + cmake --build build-cmake - flatpak: | cd astra flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo @@ -34,4 +34,5 @@ tasks: flatpak build-export export build flatpak build-bundle export astra.flatpak zone.xiv.astra --runtime-repo=https://flathub.org/repo/flathub.flatpakrep artifacts: - - astra/build/bin/astra \ No newline at end of file + - astra/build-cmake/bin/astra + - astra/astra.flatpak \ No newline at end of file