diff --git a/build_imgs.sh b/build_imgs.sh deleted file mode 100644 index 3e90c44..0000000 --- a/build_imgs.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -set -eo pipefail - -PKG_VERSION=0.1.0 - -docker build . \ - -t "ghcr.io/hotosm/fmtm-splitter:${PKG_VERSION}" \ - --target prod \ - --build-arg PKG_VERSION="${PKG_VERSION}" - -docker push "ghcr.io/hotosm/fmtm-splitter:${PKG_VERSION}" - -docker build . \ - -t ghcr.io/hotosm/fmtm-splitter:ci \ - --target ci \ - --build-arg PKG_VERSION="${PKG_VERSION}" - -docker push ghcr.io/hotosm/fmtm-splitter:ci diff --git a/pyproject.toml b/pyproject.toml index 02611bf..ad8782d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,6 @@ version = "0.1.0" version_files = [ "pyproject.toml:version", "fmtm_splitter/__version__.py", - "build_imgs.sh:PKG_VERSION", ] [tool.pdm]