Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialOwl committed Jan 14, 2019
1 parent af46e40 commit f040bbf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
24 changes: 21 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
app_name=files_frommail

project_dir=$(CURDIR)/../$(app_name)
project_dir=$(CURDIR)
build_dir=$(CURDIR)/build/artifacts
appstore_dir=$(build_dir)/appstore
source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
codecov_token_dir=$(HOME)/.nextcloud/codecov_token
version+=0.1.1
github_account=nextcloud
branch=master
version+=0.2.0

all: appstore

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

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

create-tag:
git tag -s -a v$(version) -m "Tagging the $(version) release."
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
]]>
</description>
<version>0.1.1</version>
<version>0.2.0</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<namespace>Files_FromMail</namespace>
Expand All @@ -28,7 +28,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/files_frommail/master/screenshots/v0.1.0.png</screenshot>

<dependencies>
<nextcloud min-version="12" max-version="14"/>
<nextcloud min-version="12" max-version="16"/>
</dependencies>

<commands>
Expand Down

0 comments on commit f040bbf

Please sign in to comment.