Skip to content

Commit

Permalink
fix: Fixing git identity
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed May 7, 2024
1 parent b081f51 commit 56e8ba8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
new_version="${base_version}.${new_patch_version}-${beta_tag}"
# Create an annotated tag
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git tag -a "$new_version" -m "Release version $new_version"
# Set output for later steps
Expand All @@ -38,6 +40,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git push origin "${{ steps.tag.outputs.tag_name }}"
- name: Configure .npmrc
run: |
Expand Down

0 comments on commit 56e8ba8

Please sign in to comment.