diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 08f6a362b..c49575073 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -36,8 +36,8 @@ jobs: - name: Configure GPG Key run: | export GPG_TTY=$(tty) - 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 + echo -e "$GPG_SIGNING_KEY" | gpg --batch --import --no-tty --yes + for ff in `ls ./release/*.zip`; do gpg --detach-sign --armor --openpgp -u 87DA4591 --passphrase="$GPG_PASSPHRASE" $ff; done env: GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} @@ -50,6 +50,7 @@ jobs: with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} + body: Release ${{ github.ref }} draft: true prerelease: true