Skip to content

Commit

Permalink
Update CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
J535D165 committed Jan 29, 2020
1 parent 99f867f commit f644f97
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 7 deletions.
47 changes: 41 additions & 6 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Upload Python Package
name: Deploy and release

on:
release:
types: [created]
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
deploy:
Expand All @@ -13,16 +14,50 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Get the version (git tag)
id: get_version
run: |
echo ${GITHUB_REF/refs\/tags\/v/}
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build and publish
- name: Build
run: |
python setup.py sdist bdist_wheel
- name: Create Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset (Wheel)
id: upload-release-asset-whl
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/asreview_hyperopt-${{ steps.get_version.outputs.VERSION }}-py3-none-any.whl
asset_name: asreview_hyperopt-${{ steps.get_version.outputs.VERSION }}-py3-none-any.whl
asset_content_type: application/x-wheel+zip
- name: Upload Release Asset (Sdist)
id: upload-release-asset-sdist
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/asreview-hyperopt-${{ steps.get_version.outputs.VERSION }}.tar.gz
asset_name: asreview-hyperopt-${{ steps.get_version.outputs.VERSION }}.tar.gz
asset_content_type: application/zip
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}
password: ${{ secrets.pypi_password }}
2 changes: 1 addition & 1 deletion asreviewcontrib/hyperopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
from asreviewcontrib.hyperopt.inactive import HyperInactiveEntryPoint
from asreviewcontrib.hyperopt.show_trials import ShowTrialsEntryPoint

__version__ = "0.1"
__version__ = "0.1.1"
__extension_name__ = "asreview-hyperopt"

0 comments on commit f644f97

Please sign in to comment.