From 01dd9bb6924e1c7ed42de03bcc4046756c93e65f Mon Sep 17 00:00:00 2001 From: JackNoordhuis Date: Mon, 25 Sep 2023 13:15:26 +1000 Subject: [PATCH] CI workflow: recursively add and rm dirs --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b76e0d1..6429b9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -170,9 +170,9 @@ jobs: - name: Add dist files run: | - git rm --force ./src - git add --force ./dist - git add --force ./types + git rm -r --force ./src + git add -r --force ./dist + git add -r --force ./types - name: Create Pull Request uses: peter-evans/create-pull-request@v5