diff --git a/.authors.yml b/.authors.yml index 89377c186..25afaf17c 100644 --- a/.authors.yml +++ b/.authors.yml @@ -654,6 +654,8 @@ email: raphael.das.gupta@hsr.ch alternate_emails: - git@raphael.dasgupta.ch + aliases: + - Raphael Borun Das Gupta num_commits: 10 first_commit: 2017-01-03 06:56:44 - name: Andrei diff --git a/rever.xsh b/rever.xsh index f7ad586b2..9ce184b34 100644 --- a/rever.xsh +++ b/rever.xsh @@ -3,7 +3,7 @@ from rever.activities.ghrelease import git_archive_asset $PROJECT = $GITHUB_ORG = $GITHUB_REPO = 'xonsh' $WEBSITE_URL = 'http://xon.sh' -$ACTIVITIES = ['authors', 'version_bump', 'changelog', 'pytest', 'appimage' +$ACTIVITIES = ['authors', 'version_bump', 'changelog', 'pytest', 'appimage', 'tag', 'push_tag', 'ghrelease', 'sphinx', 'ghpages', 'pypi', 'conda_forge', ] @@ -39,4 +39,5 @@ $DOCKER_INSTALL_COMMAND = ('rm -rf .cache/ __pycache__/ */__pycache__ */*/__pyca $DOCKER_GIT_NAME = 'xonsh' $DOCKER_GIT_EMAIL = 'xonsh@googlegroups.com' -$GHRELEASE_ASSETS = [git_archive_asset(), 'xonsh-x86_64.AppImage'] \ No newline at end of file +if $VERSION != "check": + $GHRELEASE_ASSETS = [git_archive_asset(), 'xonsh-x86_64.AppImage'] \ No newline at end of file