Skip to content

Commit

Permalink
0.99.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialOwl committed Sep 6, 2018
1 parent 4573b84 commit 90a765e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
32 changes: 15 additions & 17 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,26 @@ package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
github_account=daita
codecov_token_dir=$(HOME)/.nextcloud/codecov_token
version+=0.99.0
version+=0.99.1

all: appstore

release: appstore create-tag
release: appstore github-release github-upload

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:
github-release release \
--user $(github_account) \
--repo $(app_name) \
--tag v$(version) \
--name "$(app_name) v$(version)"

create-tag:
git tag -s -a v$(version) -m "Tagging the $(version) release."
git push origin v$(version)
github-upload:
github-release upload \
--user $(github_account) \
--repo $(app_name) \
--tag v$(version) \
--name "$(app_name)-$(version).tar.gz" \
--file $(build_dir)/$(app_name)-$(version).tar.gz

clean:
rm -rf $(build_dir)
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ which is a wrapper for the command line program [Tesseract OCR](https://github.c
Tesseract must be installed locally, and configured.
]]>
</description>
<version>0.99.0</version>
<version>0.99.1</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<namespace>Files_FullTextSearch_Tesseract</namespace>
Expand Down

0 comments on commit 90a765e

Please sign in to comment.