From c26a3f462586de35cb58fcb9cd6e4e59890cf894 Mon Sep 17 00:00:00 2001 From: Thirumalesh Aaraveti <97395760+athiruma@users.noreply.github.com> Date: Thu, 6 Jun 2024 12:27:28 +0530 Subject: [PATCH] Fixed the quay build (#797) --- .bumpversion.cfg | 2 +- .github/workflows/Build.yml | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1d5a2f79..0e6af780 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = True -current_version = 1.1.267 +current_version = 1.1.268 tag_name = v{current_version} message = GitHub Actions Build {current_version} diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 2b3768c5..d026a1cd 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -314,6 +314,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: ⌛ Upload to 🐋 quay.io run: | + pip install setuptools version=$(python3 setup.py --version) sudo docker build --build-arg VERSION=$version -t quay.io/${{ secrets.QAUYIO_REPOSITORY }}/${{ secrets.PACKAGE_NAME }}:v$version . sudo docker build --build-arg VERSION=latest -t quay.io/${{ secrets.QAUYIO_REPOSITORY }}/${{ secrets.PACKAGE_NAME }}:latest . diff --git a/setup.py b/setup.py index d7ba94c1..1c4b926a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from os import path from setuptools import setup, find_packages -__version__ = '1.1.267' +__version__ = '1.1.268' here = path.abspath(path.dirname(__file__))