Skip to content

Commit

Permalink
fix(plugins/npm-post): fix invalid params
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Jun 24, 2024
1 parent ec2d9d6 commit 398c368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/npm-post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ prepare() {
elif [ -z "${SSH_NO_SIGN-}" ] && [ -n "${SSH_PRIVATE_KEY-}" ] && [ -n "${SSH_PUBLIC_KEY-}" ]; then
eval "$(ssh-agent -s)"

SSH_PUBLIC_KEY_FILE=$(mtemp)
SSH_PUBLIC_KEY_FILE=$(mktemp)
printf "%s" "${SSH_PUBLIC_KEY}" >>"${SSH_PUBLIC_KEY_FILE}"

git config --local commit.gpgsign true
Expand Down

0 comments on commit 398c368

Please sign in to comment.