diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index f4c6e5a9..809ebddc 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -41,3 +41,16 @@ jobs: with: user: __token__ password: ${{ secrets.pypi_password }} + build-and-publish-docker-image: + name: Build and publish docker image + runs-on: ubuntu-18.04 + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Login with docker + run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} + - name: Publish to Registry for latest + if: success() + run: make build-push-image-latest + - name: Publish to Registry for version + run: make build-push-image-version diff --git a/setup.py b/setup.py index 32e798e4..01c99586 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup -__version__ = '2.5.0' +__version__ = '2.5.1' requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt') with open(requirements_path) as requirements_file: