From 6de6c783a20351a9bff011263e962bfaa3ce15d8 Mon Sep 17 00:00:00 2001 From: RainLoop Team Date: Sat, 16 Jan 2021 20:50:43 +0300 Subject: CI --- .github/workflows/builder.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3