Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-09-06 15:02:36 +0300
committerMaxence Lange <maxence@artificial-owl.com>2018-09-06 15:02:36 +0300
commitc54a5ec98299a19e34e3f4887c339f6556726140 (patch)
treef1ce6ebd8eca98f82e8a28f8ac91ece623c910e5
parentf1b3856f8bf95dcc3e3faca8736600340439263f (diff)
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 5547f97..1b4d11b 100644
--- a/Makefile
+++ b/Makefile
@@ -16,17 +16,17 @@ all: appstore
release: appstore create-tag
autorelease: release
- github-release release \
- --user $(github_account) \
- --repo $(app_name) \
- --tag v$(version) \
- --name "$(app_name) v$(version)"
- github-release upload \
- --user $(github_account) \
- --repo $(app_name) \
- --tag v$(version) \
- --name "$(app_name)-$(version)" \
- --file $(build_dir)/$(app_name)-$(version).tar.gz
+ github-release release \
+ --user $(github_account) \
+ --repo $(app_name) \
+ --tag v$(version) \
+ --name "$(app_name) v$(version)"
+ github-release upload \
+ --user $(github_account) \
+ --repo $(app_name) \
+ --tag v$(version) \
+ --name "$(app_name)-$(version)" \
+ --file $(build_dir)/$(app_name)-$(version).tar.gz
create-tag:
git tag -s -a v$(version) -m "Tagging the $(version) release."