Skip to content

Commit 9e7f907

Browse files
committed
testing... #2
1 parent c3ca92e commit 9e7f907

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ PACKAGE_MANAGER ?= npm
1313
PACKAGE_MANAGER_SUBDIR_ARG ?= --prefix
1414
PACKAGE_MANAGER_INSTALL_CMD ?= install
1515
PACKAGE_MANAGER_ADD_CMD ?= install
16+
PUBLISH_FOR_PULL_REQUEST = true
1617

1718
install_build_deps:
1819
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_INSTALL_CMD)
@@ -68,13 +69,14 @@ build_tar.xz_x64:
6869

6970
build_deb_x64:
7071
@echo "Build deb package"
71-
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-deb-x64
72+
@PUBLISH_FOR_PULL_REQUEST=true $(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-deb-x64
7273

7374
build_rpm_x64:
7475
@echo "Build rpm package"
7576
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-rpm-x64
7677

7778
build_appimage_x64:
79+
@export PUBLISH_FOR_PULL_REQUEST=true
7880
@echo "Build AppImage binary"
7981
@$(PACKAGE_MANAGER) $(PACKAGE_MANAGER_SUBDIR_ARG) $(APP_DIR) run build-appimage-x64
8082

0 commit comments

Comments
 (0)