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 22:59:17 +0300
committerRainLoop Team <support@rainloop.net>2021-01-16 22:59:17 +0300
commit5e3bce77786632e49df376458514bf9bcced319d (patch)
tree95ce42fb39d3ef67b6313fb8690106feb1a19b3c /.github
parentbb328898fe0ceb2eccf0c26f08c061e29ddfaba3 (diff)
CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builder.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml
index 4aa0570b9..b65fd91ad 100644
--- a/.github/workflows/builder.yml
+++ b/.github/workflows/builder.yml
@@ -36,16 +36,17 @@ jobs:
- name: Configure GPG Key
run: |
export GPG_TTY=$(tty)
- mkdir -p ~/.gnupg/
- chown -R $(whoami) ~/.gnupg/
- echo "$GPG_SIGNING_KEY" > ~/.gnupg/private.key
- find ~/.gnupg -type f -exec chmod 600 {} \;
- find ~/.gnupg -type d -exec chmod 700 {} \;
- gpg --batch --import ~/.gnupg/private.key
+ echo "$GPG_SIGNING_KEY" | gpg --batch --import
for ff in `ls ./release/*.zip`; do gpg --detach-sign --batch --pinentry-mode loopback --armor --openpgp --yes -u 87DA4591 --passphrase="$GPG_PASSPHRASE" $ff; done
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
+ # mkdir -p ~/.gnupg/
+ # chown -R $(whoami) ~/.gnupg/
+ # echo "$GPG_SIGNING_KEY" > ~/.gnupg/private.key
+ # find ~/.gnupg -type f -exec chmod 600 {} \;
+ # find ~/.gnupg -type d -exec chmod 700 {} \;
+ # gpg --batch --import ~/.gnupg/private.key
- name: Create Release
id: create_release