diff options
author | 2022-01-19 13:48:57 -0800 | |
---|---|---|
committer | 2022-01-19 13:48:57 -0800 | |
commit | 4098484ff5d1c66a5f146e773a9be25cbcd2a1f4 (patch) | |
tree | b2ae0fd10bca567fb864ba8ae0cf332297f94b3b | |
parent | 91b24c603270226dc4cb38cf087387bf444fd910 (diff) | |
download | bun-4098484ff5d1c66a5f146e773a9be25cbcd2a1f4.tar.gz bun-4098484ff5d1c66a5f146e773a9be25cbcd2a1f4.tar.zst bun-4098484ff5d1c66a5f146e773a9be25cbcd2a1f4.zip |
Update Makefile
-rw-r--r-- | Makefile | 25 |
1 files changed, 18 insertions, 7 deletions
@@ -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 |