From 3cb5d6802d95183818ba0c8c42a94308a3f615d3 Mon Sep 17 00:00:00 2001 From: Jason Date: Tue, 9 May 2023 16:54:51 -0700 Subject: [PATCH] Fix git add --- .github/workflows/upgrade_dependencies.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upgrade_dependencies.yml b/.github/workflows/upgrade_dependencies.yml index 62bbb219..e0904944 100644 --- a/.github/workflows/upgrade_dependencies.yml +++ b/.github/workflows/upgrade_dependencies.yml @@ -38,8 +38,8 @@ jobs: run: | git config user.name github-actions git config user.email github-actions@github.com - git add ${{ matrix.package }}/requirementsrequirements-${{ matrix.os }}_py${{ matrix.python-version }}.txt - git add ${{ matrix.package }}/requirements/requirements-${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt + git add requirements/requirements-${{ matrix.os }}_py${{ matrix.python-version }}.txt + git add requirements/requirements-${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt git commit -m "Update ${{ matrix.os }} dependencies for ${{ matrix.package }}" git push -f origin ${{ github.ref_name }}:auto-dependency-upgrades-${{ matrix.package }}-${{ matrix.os }}-py${{ matrix.python-version }}