Skip to content

Commit

Permalink
Update workflow to set Git author before publishing package.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamBroomy committed Dec 9, 2024
1 parent a70b491 commit 4cc3eb8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ jobs:
python-version: "3.12"

- name: Bump Version, Build, Publish
run: uvx --from rust-just just publish-package
run: \
git config --global user.email "[email protected]"
git config --global user.name "GitHub CI"
uvx --from rust-just just publish-package

- name: Minimize uv Cache
run: uv cache prune --ci

0 comments on commit 4cc3eb8

Please sign in to comment.