Skip to content

Commit

Permalink
ci(release): explicitly specify files to commit (#2304)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wpbonelli authored Sep 5, 2024
1 parent bfa344a commit 8229af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down

0 comments on commit 8229af8

Please sign in to comment.