From ecd129cab058e0a0e5ee8a64f5f7fa0a0a493593 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Thu, 28 Mar 2024 13:43:34 -0400 Subject: [PATCH] change build platform --- .github/workflows/build.yml | 2 +- app/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c93e10..3f1fe28 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: tags: | ${{ steps.determine.outputs.dock_image }} ghcr.io/${{ steps.determine.outputs.dock_image }} - platforms: linux/amd64,linux/ppc64le,linux/arm64,linux/arm/v7 + platforms: linux/amd64 cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache PushContainerReadme: diff --git a/app/config.py b/app/config.py index 4049c38..0b63a07 100644 --- a/app/config.py +++ b/app/config.py @@ -3,7 +3,7 @@ class Settings(BaseSettings): pflink_mongodb: MongoDsn = 'mongodb://localhost:27017' - version: str = "4.0.2" + version: str = "4.0.3" mongo_username: str = "admin" mongo_password: str = "admin" log_level: str = "DEBUG"