From aca3c0ea06dc7284f04a97a0ac6395da119bac96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 30 Aug 2020 18:27:48 +0200 Subject: [PATCH] Fix: Skip verification of signature --- .github/workflows/release.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a9426524..d6bd28eb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -89,12 +89,6 @@ jobs: - name: "Sign composer-normalize.phar with gpg" run: "gpg --armor --local-user \"${{ secrets.GPG_LOCAL_USER }}\" --output ${{ env.COMPOSER_NORMALIZE_PHAR_SIGNATURE }} --passphrase \"${{ secrets.GPG_KEY_PASSPHRASE }}\" --pinentry-mode loopback --yes --detach-sig ${{ env.COMPOSER_NORMALIZE_PHAR }}" - - name: "Receive key with gpg" - run: "gpg --keyserver hkps://keys.openpgp.org --receive-key \"${{ secrets.GPG_LOCAL_USER }}\"" - - - name: "Verify signature of composer-normalize.phar with gpg" - run: "gpg --verify ${{ env.COMPOSER_NORMALIZE_PHAR_SIGNATURE }} ${{ env.COMPOSER_NORMALIZE_PHAR }}" - - name: "Remove decrypted keys.asc" run: "rm ${{ env.GPG_KEYS }}"