diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1ecb7e352..2b1475c5a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -47,11 +47,11 @@ jobs: run: | cd .. python repo_manager.py - read 3 + echo 3 | command - name: Create Pull Request uses: peter-evans/create-pull-request@v5 with: commit-message: Upgrade on aca-py release - committer: Peter Evans + committer: Jamie Hale branch: test-upgrade \ No newline at end of file diff --git a/repo_manager.py b/repo_manager.py index b5b39256c..9101f94ac 100644 --- a/repo_manager.py +++ b/repo_manager.py @@ -281,7 +281,8 @@ def main(): What would you like to do? (1) Create a new plugin (2) Update all plugin common poetry sections - (3) Exit \n\nInput: """ + (3) Upgrade plugin_global dependencies + (4) Exit \n\nInput: """ selection = input(options) # Create a new plugin @@ -321,8 +322,7 @@ def main(): elif selection == "3": msg = """Upgrade plugin_global dependencies \n""" print(msg) - os.system('cd plugin_globals') - os.system('poetry install') + os.system('cd plugin_globals && poetry install')