From 4a2eaf3c332dce248908ed93af1bee618a2e2c64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sun, 23 Oct 2022 15:54:53 +0200 Subject: [PATCH] chore: don't package by default --- .gitlab-ci.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c49500d..5a0aebc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -131,7 +131,7 @@ package: - ln -s $PWD/squashfs-root/AppRun /usr/local/bin/linuxdeploy-x86_64.AppImage - cd - script: - - make + - make package artifacts: paths: - ./*.AppImage diff --git a/Makefile b/Makefile index fc7040d..898a806 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -all: package +all: backend frontend -package: backend frontend +package: all rm -fr dist linuxdeploy-x86_64.AppImage --appdir dist cp target/release/upend dist/usr/bin/upend