From 9b0f3b27b2d41c5530b07cea129d1907d1cbe429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eugenio=20Parodi=20=F0=9F=8C=B6=EF=B8=8F?= Date: Sun, 30 Mar 2025 23:25:43 +0100 Subject: [PATCH] chore: update pyTermTk version in the apps setup --- .github/workflows/release.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8b4c07b..a0bc8270 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,6 +61,9 @@ jobs: "s|version:str.*|version:str = ${_VERSION}|" \ TermTk/TTkCore/cfg.py \ TermTk/__init__.py + sed -i \ + "s|'pyTermTk>=.*',|'pyTermTk>=${_VERSION}',|" \ + setup.* cp TermTk/CHANGELOG.md CHANGELOG.md git add \ TermTk/TTkCore/cfg.py \ @@ -108,9 +111,17 @@ jobs: gh release upload ${TAG_NAME} tmp/tests.tgz gh release upload ${TAG_NAME} tmp/demo.tgz + pyTermTk-deploy-sandbox: + name: Deploy pyTermTk Docs + uses: ./.github/workflows/release_sandbox.yml + needs: release-please + secrets: inherit + pyTermTk-deploy-docs: if: ${{ fromJson(needs.release-please.outputs.rp_out)['TermTk--release_created'] }} name: Deploy pyTermTk Docs uses: ./.github/workflows/release_doc.yml - needs: release-please + needs: + - release-please + - pyTermTk-deploy-artifacts secrets: inherit