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 5e72b80 commit d0dbc2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,21 +167,21 @@ jobs:
- name: Configure GPG Key
run: |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ${{ secrets.GPG_PUB_KEY }}
git config --global user.signingkey ${{ secrets.GPG_PUB_KEY }}
mkdir -p ~/.gnupg/
touch ~/.gnupg/gpg.conf
echo "use-agent" >> ~/.gnupg/gpg.conf
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
touch ~/.gnupg/gpg-agent.conf
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
echo RELOADAGENT | gpg-connect-agent
printf "${{ secrets.GPG_SIGNING_KEY }}" | base64 --decode > ~/.gnupg/private.key
gpg --import ~/.gnupg/private.key --no-tty
gpg --import ~/.gnupg/private.key
- name: Bump version
run: |
git pull
Expand Down

0 comments on commit d0dbc2c

Please sign in to comment.