Skip to content

Commit

Permalink
Fix release error
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Apr 3, 2024
1 parent 0b43ce9 commit 5e72b80
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,16 +171,17 @@ jobs:
git config --global user.signingkey ${{ secrets.GPG_PUB_KEY }}
mkdir -p ~/.gnupg/
touch ~/.gnupg/gpg.conf
touch ~/.gnupg/gpg-agent.conf
echo "use-agent" >> ~/.gnupg/gpg.conf
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf

Check failure on line 178 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / YAML Style Check

178:1 [trailing-spaces] trailing spaces
touch ~/.gnupg/gpg-agent.conf
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
echo RELOADAGENT | gpg-connect-agent

Check failure on line 182 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / YAML Style Check

182:1 [trailing-spaces] trailing spaces
printf "${{ secrets.GPG_SIGNING_KEY }}" | base64 --decode > ~/.gnupg/private.key
gpg --import ~/.gnupg/private.key
gpg --import ~/.gnupg/private.key --no-tty
- name: Bump version
run: |
git pull
Expand Down

0 comments on commit 5e72b80

Please sign in to comment.