generated from AndreasAugustin/template
-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: ✨ (#204) add gnupg to docker image * feat: ✨ (#204) add option to sign commits * fix: 🐛 (#204) issue with tty * fix: 🐛 (#204) fix issue with no tty * fix: 🐛 (#204) fix issue with no passphrase * fix: 🐛 (#204) trial * fix: 🐛 (#204) trial for fix * fix: 🐛 (#204) fix * fix: 🐛 (#204) trial * fix: 🐛 (#204) add pinentry mode loopback * fix: 🐛 (#204) * feat: ✨ (#204) add signoff and tig * fix: 🐛 (#204) fix commit * fix: 🐛 (#204) * fix: 🐛 (#204) trial * fix: 🐛 (#204) * fix: 🐛 trial for gpg sign * fix: 🚧 wip * fix: 🚧 WIP * fix: 🚧 WIP * fix: 🐛 disable gpg with passphrase
- Loading branch information
1 parent
a3f502d
commit 99aefe5
Showing
10 changed files
with
117 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [[ -n "${GPG_PASSPHRASE}" ]] &>/dev/null; then | ||
# echo -e "${GPG_PASSPHRASE}" | gpg --pinentry-mode loopback --batch --yes --passphrase-fd 0 "$@" <&0 | ||
echo "::error::currently gpg with passphrase is not supported" | ||
exit 1 | ||
else | ||
gpg --pinentry-mode loopback --yes --batch "$@" <&0 | ||
fi | ||
|
||
exit $? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#! /usr/bin/env bash | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
# set -u | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters