Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/RainLoop/rainloop-webmail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/builder.yml')
-rw-r--r--.github/workflows/builder.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml
index df8a6a7c3..08f6a362b 100644
--- a/.github/workflows/builder.yml
+++ b/.github/workflows/builder.yml
@@ -36,9 +36,10 @@ jobs:
- name: Configure GPG Key
run: |
export GPG_TTY=$(tty)
- cat <(echo -e "${{ secrets.GPG_SIGNING_KEY }}") | gpg --batch --import --no-tty --yes
+ cat <(echo -e "$GPG_SIGNING_KEY") | gpg --batch --import --no-tty --yes
for ff in `ls ./release/*.zip`; do gpg --detach-sign --no-tty --yes --armor --openpgp -u 87DA4591 --passphrase="$GPG_PASSPHRASE" $ff; done
env:
+ GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
- name: Create Release