Skip to content

Commit

Permalink
build: Ensure the GPG password is known
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Sep 15, 2024
1 parent 8dfef4f commit 0cfc661
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions devtools/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ fi

# ----------------------------------------------------------------------------------------------------
info "GPG workaround: Starting"

# Forcing a manual gpg signing action to ensure the password is known
(
cd /tmp
echo x > Yauaa-release-$$.txt
gpg --clearsign Yauaa-release-$$.txt
rm Yauaa-release.txt Yauaa-release-$$.txt.asc
)

runGpgSignerInBackGround(){
while : ; do date ; echo "test" | gpg --clearsign ; sleep 10s ; done
}
Expand Down

0 comments on commit 0cfc661

Please sign in to comment.