From 2abdc7323112bbb77e7987978c776820b19b56ae Mon Sep 17 00:00:00 2001 From: Ruslan Iushchenko Date: Mon, 22 Jul 2024 08:56:29 +0200 Subject: [PATCH] Temporary disable Python releases before CI/CD is fixed. --- .github/workflows/release.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 845fb6672..193ee15ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -84,10 +84,10 @@ jobs: PY_VERSION=$(grep -m 1 ^version pyproject.toml | tr -s ' ' | tr -d '"' | tr -d "'" | cut -d' ' -f3) if [[ "$PY_VERSION" != "$VERSION" ]]; then sed -i "s/version = \"$PY_VERSION\"/version = \"$VERSION\"/g" pyproject.toml - git add pyproject.toml - git commit -m "Update version number to $VERSION" - git push - cat pyproject.toml + # Temporary disable Python publish + #git add pyproject.toml + #git commit -m "Update version number to $VERSION" + #git push fi - name: install project dependencies @@ -107,13 +107,14 @@ jobs: - name: Install dependencies working-directory: "./pramen-py" run: poetry install --no-interaction --no-root - - - name: build and publish the wheel to jfrog - working-directory: "./pramen-py" - env: - ENV: pypi - PRAMENPY_PYPI_TOKEN: ${{ secrets.PRAMENPY_PYPI_TOKEN }} - run: make --silent publish + + # Temporary disable Python publish + #- name: build and publish the wheel to jfrog + # working-directory: "./pramen-py" + # env: + # ENV: pypi + # PRAMENPY_PYPI_TOKEN: ${{ secrets.PRAMENPY_PYPI_TOKEN }} + # run: make --silent publish release-sbt: needs: [ "release-python" ]