Skip to content

Commit

Permalink
ci: add git email for release (#2874)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkim0 authored Jun 30, 2024
1 parent f02dd7e commit b9c7015
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ jobs:
ref: ${{ inputs.branch }}
- name: git tag
run: |
git config user.name "scvi-tools release"
git config --global user.email "[email protected]"
git config --global user.name "scvi-tools release"
git tag -m "${{ inputs.tag }}" "${{ inputs.tag }}"
# If there is duplicate tag, this will fail. The publish to pypi action will have been a noop (due to skip
# existing), so we make a non-destructive exit here
Expand Down

0 comments on commit b9c7015

Please sign in to comment.