From bef54437fa4fb657ef4d9f96c4e539af4c0a123b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eugenio=20Parodi=20=F0=9F=8C=B6=EF=B8=8F?= Date: Sat, 29 Mar 2025 20:39:02 +0000 Subject: [PATCH] chore: fix --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33eea8c6..efe29c68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,8 +56,11 @@ jobs: run: | git config --global user.name 'Eugenio Parodi - Action' git config --global user.email 'ceccopierangioliegenio@googlemail.com' - git fetch origin/${{ fromJson(steps.release-please.outputs.pr).headBranchName }} - git checkout ${{ fromJson(steps.release-please.outputs.pr).headBranchName }} + git clone \ + -b ${{ fromJson(steps.release-please.outputs.pr).headBranchName }} \ + https://${GITHUB_TOKEN}@github.com/ceccopierangiolieugenio/pyTermTk.git \ + pyTermTk.new + cd pyTermTk.new _VERSION=$(jq .TermTk .release-please-manifest.json) sed "s|version:str.*|version:str = '${_VERSION}'|" \ -i TermTk/__init__.py