Skip to content

Commit

Permalink
1.19.3 build
Browse files Browse the repository at this point in the history
  • Loading branch information
nbonamy committed Oct 20, 2024
1 parent 6bfb697 commit 49fa9a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,18 @@ linux-x64:

linux: linux-x64

#all: clean increment-build-number mac-arm64 mac-x64 win linux
all: clean increment-build-number mac-arm64 mac-x64 win-arm64 linux
all: clean increment-build-number mac-arm64 mac-x64 win linux
#all: clean increment-build-number mac-arm64 mac-x64 win-arm64 linux

increment-build-number:
$(eval CURRENT_BUILD_NUMBER=$(shell cat $(BUILD_NUMBER_FILE)))
$(eval NEW_BUILD_NUMBER=$(shell echo $$(( $(CURRENT_BUILD_NUMBER) + 1 ))))
@echo $(NEW_BUILD_NUMBER) > $(BUILD_NUMBER_FILE)

publish:
# ifneq ($(shell git status --porcelain),)
# $(error You have uncommitted changes!)
# endif
ifneq ($(shell git status --porcelain),)
$(error You have uncommitted changes!)
endif
$(eval PACKAGES := $(shell find out -name '*$(VERSION).zip' -o -name '*$(VERSION)*.dmg' ))
#gh release upload v$(VERSION) --repo https://github.com/nbonamy/electron-squirrel-test $(PACKAGES)
gh release create v$(VERSION) --repo https://github.com/nbonamy/witsy --title $(VERSION) --generate-notes $(PACKAGES)
gh workflow run build-windows.yml
2 changes: 1 addition & 1 deletion build/build_number.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
250
251

0 comments on commit 49fa9a4

Please sign in to comment.