mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 23:08:08 +08:00
CI
This commit is contained in:
parent
71748040be
commit
6994837567
1 changed files with 6 additions and 1 deletions
7
.github/workflows/builder.yml
vendored
7
.github/workflows/builder.yml
vendored
|
@ -36,7 +36,12 @@ jobs:
|
|||
- name: Configure GPG Key
|
||||
run: |
|
||||
export GPG_TTY=$(tty)
|
||||
echo -e "$GPG_SIGNING_KEY" | gpg --batch --import --no-tty --yes
|
||||
mkdir -p ~/.gnupg/
|
||||
chown -R $(whoami) ~/.gnupg/
|
||||
echo -e "$GPG_SIGNING_KEY" > ~/.gnupg/private.key
|
||||
find ~/.gnupg -type f -exec chmod 600 {} \;
|
||||
find ~/.gnupg -type d -exec chmod 700 {} \;
|
||||
gpg --import --no-tty --yes ~/.gnupg/private.key
|
||||
gpg --list-secret-keys --keyid-format LONG
|
||||
ls ./release/*.zip
|
||||
echo "---"
|
||||
|
|
Loading…
Reference in a new issue