From aa5fcd7d9240e6b50320c8523acc5bf737fd60a4 Mon Sep 17 00:00:00 2001 From: Doug Massay Date: Fri, 21 Jul 2023 15:48:05 -0400 Subject: [PATCH] Update create_tag.yml [skip ci] --- .github/workflows/create_tag.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_tag.yml b/.github/workflows/create_tag.yml index a164eb741f..26bacca3ed 100644 --- a/.github/workflows/create_tag.yml +++ b/.github/workflows/create_tag.yml @@ -40,7 +40,6 @@ jobs: id: create_archive if: ${{ steps.check_tag_name.outputs.match != '' }} run: | - export GPG_TTY=$(tty) git config tar.tar.gz.command 'gzip -cn' git tag -s ${{ github.event.inputs.tag_name }} -m 'Tag for ${{ github.event.inputs.tag_name }} release' git push origin ${{ github.event.inputs.tag_name }} @@ -50,9 +49,9 @@ jobs: echo "fname=$FNAME" >> $GITHUB_OUTPUT URL="https://github.com/$GITHUB_REPOSITORY/archive/refs/tags/${{ github.event.inputs.tag_name }}.zip" git archive --prefix=${REPO}-${TAG#v}/ -o ${FNAME}.tar.gz ${TAG} - gpg --detach-sign --pinentry-mode loopback --passphrase ${{ secrets.SIGNING_BONUS_PHRASE }} ${FNAME}.tar.gz + gpg --detach-sign --pinentry-mode=loopback --passphrase ${{ secrets.SIGNING_BONUS_PHRASE }} ${FNAME}.tar.gz curl -L -o ${FNAME}.zip ${URL} - gpg --detach-sign --pinentry-mode loopback --passphrase ${{ secrets.SIGNING_BONUS_PHRASE }} ${FNAME}.zip + gpg --detach-sign --pinentry-mode=loopback --passphrase ${{ secrets.SIGNING_BONUS_PHRASE }} ${FNAME}.zip - name: Create Release if: ${{ steps.check_tag_name.outputs.match != '' }}