From 447cc7f9acf76a61ac8e40821ff6c8f8c3768226 Mon Sep 17 00:00:00 2001 From: Yonas Kolb Date: Wed, 10 Apr 2024 20:59:59 +1000 Subject: [PATCH] remove homebrew step from release process now handled by a bot --- Makefile | 6 ------ RELEASE.md | 1 - 2 files changed, 7 deletions(-) diff --git a/Makefile b/Makefile index 7069ae5d..f68bbbf0 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,6 @@ INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME) SHARE_PATH = $(PREFIX)/share/$(EXECUTABLE_NAME) CURRENT_PATH = $(PWD) REPO = https://github.com/yonaskolb/$(TOOL_NAME) -RELEASE_TAR = $(REPO)/archive/$(VERSION).tar.gz -SHA = $(shell curl -L -s $(RELEASE_TAR) | shasum -a 256 | sed 's/ .*//') SWIFT_BUILD_FLAGS = --disable-sandbox -c release --arch arm64 --arch x86_64 BUILD_PATH = $(shell swift build $(SWIFT_BUILD_FLAGS) --show-bin-path) EXECUTABLE_PATH = $(BUILD_PATH)/$(EXECUTABLE_NAME) @@ -42,10 +40,6 @@ release: publish: archive brew echo "published $(VERSION)" -brew: - brew update - brew bump-formula-pr --url=$(RELEASE_TAR) XcodeGen - archive: build ./scripts/archive.sh "$(EXECUTABLE_PATH)" swift package plugin --allow-writing-to-package-directory generate-artifact-bundle \ diff --git a/RELEASE.md b/RELEASE.md index ebd890a8..42e9ff78 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -8,4 +8,3 @@ 1. Push commit and tag to github 1. Create release from tag on GitHub using the version number and relevant changelog contents 1. Run `make archive` and upload `xcodegen.zip` and `xcodegen.artifactbundle.zip` to the github release -1. Run `make brew` which will open a PR on homebrew core \ No newline at end of file