mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-11 15:44:43 +08:00
CI
This commit is contained in:
parent
a197e257aa
commit
e735c1bbb7
1 changed files with 6 additions and 8 deletions
14
.github/workflows/builder.yml
vendored
14
.github/workflows/builder.yml
vendored
|
@ -31,16 +31,14 @@ jobs:
|
|||
- name: Move all assets to release folder
|
||||
run: |
|
||||
mkdir ./release
|
||||
echo `ls ./build/dist/releases/**/**/*.zip | xargs`
|
||||
cp `ls ./build/dist/releases/**/**/*.zip | xargs` ./release
|
||||
echo `ls ./release/*.zip | xargs`
|
||||
|
||||
# - name: Configure GPG Key
|
||||
# run: |
|
||||
# cat <(echo -e "${{ secrets.GPG_SIGNING_KEY }}") | gpg --batch --import --no-tty --yes
|
||||
# for ff in `ls ./release/*.zip | xargs`; do gpg --detach-sign --no-tty --yes --armor --openpgp -u 87DA4591 --passphrase="$GPG_PASSPHRASE" $ff; done
|
||||
# env:
|
||||
# GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
||||
- name: Configure GPG Key
|
||||
run: |
|
||||
cat <(echo -e "${{ secrets.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_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
|
|
Loading…
Add table
Reference in a new issue