Skip to content

Commit e80bbe7

Browse files
author
Sebastian Penhouet
committed
fix(release): drop stale src pathspec from version commit
src/ held the Docusaurus React homepage and went away with the Zensical migration; the package itself lives in confluence_markdown_exporter/. Passing a pathspec that matches no tracked files makes git add -u exit 128, which killed the 5.4.0 release run right after the docs bump.
1 parent cae8035 commit e80bbe7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
git config --local user.email "action@github.com"
7676
git config --local user.name "GitHub Action"
7777
# -u: stage modifications to tracked files only; never add untracked files.
78-
git add -u pyproject.toml uv.lock README.md docs src
78+
git add -u pyproject.toml uv.lock README.md docs
7979
git diff --cached --quiet || git commit -m "Bump version to ${{ env.NEW_VERSION }}"
8080
git push
8181

0 commit comments

Comments
 (0)