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

github.com/nextcloud/orcid.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-02-01 13:57:17 +0300
committerMaxence Lange <maxence@artificial-owl.com>2019-02-01 13:57:17 +0300
commitaae0cd84818f41eeaa625c920c86b03aad055c18 (patch)
tree737fc434ee4a9fc943c63428d71c1ab178e106a0
parenta09fd3f9bf131fca735703ff92dcc45594381225 (diff)
1.1.0v1.1.0
-rw-r--r--Makefile27
-rwxr-xr-xappinfo/info.xml4
2 files changed, 26 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d0b637a..b90a247 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,37 @@
app_name=orcid
-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
-version+=1.0.0
+github_account=nextcloud
+branch=master
+codecov_token_dir=$(HOME)/.nextcloud/codecov_token
+version+=1.1.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."
@@ -47,3 +67,4 @@ appstore: clean
echo "Signing package…"; \
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name)-$(version).tar.gz | openssl base64; \
fi
+
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 757087d..4200e4b 100755
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,7 +5,7 @@
<name>ORCID</name>
<summary>Authenticate with ORCID</summary>
<description>based on user_orcid written by Lars Næsbye Christensen, DeIC</description>
- <version>1.0.0</version>
+ <version>1.1.0</version>
<licence>agpl</licence>
<author>Maxence Lange</author>
<author>Lars Næsbye Christensen</author>
@@ -18,7 +18,7 @@
<repository type="git">https://github.com/nextcloud/orcid.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/orcid/master/screenshots/personalsettings.jpeg</screenshot>
<dependencies>
- <nextcloud min-version="14" max-version="14"/>
+ <nextcloud min-version="14" max-version="16"/>
</dependencies>
</info>