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 14:58:29 +0300
committerMaxence Lange <maxence@artificial-owl.com>2018-09-06 14:58:29 +0300
commitebd9db98cd05cea5498a6ef36d726696cb13a515 (patch)
treed98db614a9166be1d3896bf0c8e81fa178b30ffb
parent2fe9dd2eaa223de5824273d5b351668577fef19e (diff)
0.99.2
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-rw-r--r--Makefile16
-rw-r--r--appinfo/info.xml2
2 files changed, 16 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 39597c3..5547f97 100644
--- a/Makefile
+++ b/Makefile
@@ -7,13 +7,27 @@ source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
+github_account=nextcloud
codecov_token_dir=$(HOME)/.nextcloud/codecov_token
-version+=0.99.1
+version+=0.99.2
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
+
create-tag:
git tag -s -a v$(version) -m "Tagging the $(version) release."
git push origin v$(version)
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 932e81c..81f70c8 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -10,7 +10,7 @@ Core App of the full-text search framework for your Nextcloud.
]]>
</description>
- <version>0.99.1</version>
+ <version>0.99.2</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<namespace>FullTextSearch</namespace>