From f63ff994ce7267b8b9437face68e1a75774dcac2 Mon Sep 17 00:00:00 2001 From: Sergio Garcia <38561120+sergargar@users.noreply.github.com> Date: Tue, 16 May 2023 13:32:46 +0200 Subject: [PATCH] fix(action): solve pypi-release action creating the release branch (#2364) --- .github/workflows/pypi-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 9910da41..89996a74 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -35,6 +35,7 @@ jobs: git commit -m "chore(release): ${{ env.RELEASE_TAG }}" --no-verify git tag -fa ${{ env.RELEASE_TAG }} -m "chore(release): ${{ env.RELEASE_TAG }}" git push -f origin ${{ env.RELEASE_TAG }} + git checkout -B release-${{ env.RELEASE_TAG }} poetry build - name: Publish prowler package to PyPI run: |