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:
authorRainLoop Team <support@rainloop.net>2021-01-16 20:50:43 +0300
committerRainLoop Team <support@rainloop.net>2021-01-16 20:50:43 +0300
commit6de6c783a20351a9bff011263e962bfaa3ce15d8 (patch)
treec4df3aae16a2bf01ab963e137b3cf755b30e8726
parentffe01fb91f262436a38fdae1e428a4dcc26f2c86 (diff)
CI
-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