From 8229af8d7a0aa677e2a6df69f7ad3acf8c88a08c Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Thu, 5 Sep 2024 09:56:24 -0400 Subject: [PATCH] ci(release): explicitly specify files to commit (#2304) Explicitly add files to commit after updating the version number and generating the changelog. Previously we used 'git add -A'. As of git-cliff-action@v4 this includes the git-cliff binary and related content which is apparently installed to the working directory. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f564cec9e5..0dd186bedc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -120,7 +120,7 @@ jobs: git config core.sharedRepository true git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add -A + git add flopy docs .docs CITATION.cff README.md version.txt git commit -m "ci(release): set version to ${{ steps.version.outputs.version }}, update plugins from DFN files, update changelog" git push origin "${{ github.ref_name }}"