From 3402be6f86d308edd52ae12ba3ce4f9f1254119e Mon Sep 17 00:00:00 2001 From: Krzysztof Borowy <6444719+krizzu@users.noreply.github.com> Date: Thu, 11 Jul 2024 22:57:21 +0200 Subject: [PATCH] fix --- .github/scripts/setup-ci-git-user.sh | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/setup-ci-git-user.sh b/.github/scripts/setup-ci-git-user.sh index 10efa5b8..77c87854 100755 --- a/.github/scripts/setup-ci-git-user.sh +++ b/.github/scripts/setup-ci-git-user.sh @@ -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" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d598286..a27428f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: