aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-01-19 13:48:57 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-01-19 13:48:57 -0800
commit4098484ff5d1c66a5f146e773a9be25cbcd2a1f4 (patch)
treeb2ae0fd10bca567fb864ba8ae0cf332297f94b3b
parent91b24c603270226dc4cb38cf087387bf444fd910 (diff)
downloadbun-4098484ff5d1c66a5f146e773a9be25cbcd2a1f4.tar.gz
bun-4098484ff5d1c66a5f146e773a9be25cbcd2a1f4.tar.zst
bun-4098484ff5d1c66a5f146e773a9be25cbcd2a1f4.zip
Update Makefile
-rw-r--r--Makefile25
1 files changed, 18 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index fc5b488c8..5b372615a 100644
--- a/Makefile
+++ b/Makefile
@@ -570,18 +570,29 @@ release-bin-check: release-bin-check-version
@make -B check-glibc-version-dependency
endif
-release-bin-without-push: test-all release-bin-check release-bin-generate release-bin-codesign
-release-bin: release-bin-without-push release-bin-push
-
-release-bin-dir:
- echo $(PACKAGE_DIR)
-
-release-bin-push:
+release-bin-push-bin:
gh release upload $(BUN_BUILD_TAG) --clobber $(BUN_DEPLOY_ZIP)
gh release upload $(BUN_BUILD_TAG) --clobber $(BUN_DEPLOY_ZIP) --repo $(BUN_AUTO_UPDATER_REPO)
+
+
+ifeq ($(OS_NAME),darwin)
+release-bin-push-dsym:
gh release upload $(BUN_BUILD_TAG) --clobber $(BUN_DEPLOY_DSYM)
gh release upload $(BUN_BUILD_TAG) --clobber $(BUN_DEPLOY_DSYM) --repo $(BUN_AUTO_UPDATER_REPO)
+endif
+
+ifeq ($(OS_NAME),linux)
+release-bin-push-dsym:
+endif
+
+
+release-bin-push: release-bin-push-bin release-bin-push-dsym
+release-bin-without-push: test-all release-bin-check release-bin-generate release-bin-codesign
+release-bin: release-bin-without-push release-bin-push
+
+release-bin-dir:
+ echo $(PACKAGE_DIR)
dev-obj:
$(ZIG) build obj