Browse Source

chore: update pyTermTk version in the apps setup

pull/358/head
Eugenio Parodi 🌶️ 12 months ago
parent
commit
9b0f3b27b2
  1. 13
      .github/workflows/release.yml

13
.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

Loading…
Cancel
Save