From 37a1b008b3e66e61dbbe14f82e12648912e4a2ae Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Wed, 21 Feb 2024 10:55:32 +0100 Subject: [PATCH] ci: Upload Funkwhale Desktop AppImage into package registry Part-of: --- .gitlab-ci.yml | 4 +++- Makefile | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 64833fb1b..387c58100 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -430,7 +430,7 @@ build_api: paths: - api -build_desktop: +build_tauri: stage: build rules: - if: $CI_COMMIT_BRANCH =~ /(stable|develop)/ @@ -538,6 +538,8 @@ package: artifacts: true - job: build_front artifacts: true + - job: build_tauri + artifacts: true rules: - if: $CI_COMMIT_BRANCH =~ /(stable|develop)/ diff --git a/Makefile b/Makefile index 5ffe3d6a2..9f07f488c 100644 --- a/Makefile +++ b/Makefile @@ -51,4 +51,7 @@ package: zip -q 'funkwhale-front.zip' -r front && \ rm -Rf front + cd '$(BUILD_DIR)' && \ + cp ../front/tauri/target/release/bundle/appimage/funkwhale_*.AppImage FunkwhaleDesktop.AppImage + cd '$(BUILD_DIR)' && sha256sum * > SHA256SUMS