Skip to content

Commit

Permalink
Remove app tagging from makefile.
Browse files Browse the repository at this point in the history
Having to release the app and framework in lockstep is pretty limiting
and has broken a few times already.
  • Loading branch information
markstory committed May 6, 2015
1 parent 6874d0a commit b469cf1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions Makefile
Expand Up @@ -93,7 +93,7 @@ tag-release: guard-VERSION bump-version

# Tasks for tagging the app skeleton and
# creating a zipball of a fully built app skeleton.
.PHONY: clean tag-app build-app package
.PHONY: clean package

clean:
rm -rf build
Expand All @@ -108,12 +108,6 @@ build/app: build
build/cakephp: build
git checkout-index -a -f --prefix=build/cakephp/

tag-app: guard-VERSION build/app
@echo "Tagging new version of application skeleton"
cd build/app && git tag -s $(VERSION) -m "CakePHP App $(VERSION)"
cd build/app && git push $(REMOTE)
cd build/app && git push $(REMOTE) --tags

dist/cakephp-$(DASH_VERSION).zip: build/app build/cakephp composer.phar
mkdir -p dist
@echo "Installing app dependencies with composer"
Expand All @@ -130,7 +124,7 @@ dist/cakephp-$(DASH_VERSION).zip: build/app build/cakephp composer.phar
cd build/app && find . -not -path '*.git*' | zip ../../dist/cakephp-$(DASH_VERSION).zip -@

# Easier to type alias for zip balls
package: tag-app dist/cakephp-$(DASH_VERSION).zip
package: dist/cakephp-$(DASH_VERSION).zip



Expand Down

0 comments on commit b469cf1

Please sign in to comment.