From 93db71f9329c52db9e0f0a8001ced7cecc356147 Mon Sep 17 00:00:00 2001 From: gnikit Date: Wed, 26 Jan 2022 01:36:58 +0000 Subject: [PATCH] Disable GPG signing of auto-commit --- .github/workflows/python-publish.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index af714625..7b5b6fe8 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -19,16 +19,16 @@ jobs: steps: - uses: actions/checkout@v2 - # This is a temporary workaround until GitHub Actions start natively - # supporting signed commits like they should - - name: Import GPG key - id: import_gpg - uses: crazy-max/ghaction-import-gpg@v4 - with: - gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} - passphrase: ${{ secrets.PASSPHRASE }} - git_user_signingkey: true - git_commit_gpgsign: true + # # This is a temporary workaround until GitHub Actions start natively + # # supporting signed commits like they should + # - name: Import GPG key + # id: import_gpg + # uses: crazy-max/ghaction-import-gpg@v4 + # with: + # gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + # passphrase: ${{ secrets.PASSPHRASE }} + # git_user_signingkey: true + # git_commit_gpgsign: true - name: Set up Python uses: actions/setup-python@v2