Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krizzu committed Jul 11, 2024
1 parent ed4e629 commit b558bf5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/setup-ci-git-user.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ then
exit 1
fi

git config --global user.name "$GITHUB_NAME"
git config --global user.email "$GITHUB_EMAIL"
echo "machine github.com login $GITHUB_NAME password $GITHUB_TOKEN" > ~/.netrc
git config user.name "$GITHUB_NAME"
git config user.email "$GITHUB_EMAIL"
echo "machine github.com login $GITHUB_NAME password $GITHUB_TOKEN" > "$HOME/.netrc"


2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
title: "release: version packages"
commit: "release: version packages"
setupGitUser: false
setupGitUser: 'false'
publish: "yarn release:publish"
version: "yarn release:version"
env:
Expand Down

0 comments on commit b558bf5

Please sign in to comment.