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 4cb4073 commit 05953d8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,16 @@ jobs:
]
- name: Configure GPG Key
run: |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ${{ secrets.GPG_PUB_KEY }}
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ${{ secrets.GPG_PUB_KEY }}
# sudo gpg --export ${{ secrets.GPG_PUB_KEY }} | sudo apt-key add -
#
# git config --global user.signingkey ${{ secrets.GPG_PUB_KEY }}

git config --global user.signingkey ${{ secrets.GPG_PUB_KEY }}

# mkdir -p ~/.gnupg/
# printf "$GPG_SIGNING_KEY" | base64 --decode > ~/.gnupg/private.key
# gpg --import ~/.gnupg/private.key
mkdir -p ~/.gnupg/
printf "$GPG_SIGNING_KEY" | base64 --decode > ~/.gnupg/private.key
gpg --import ~/.gnupg/private.key
env:
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
- name: Bump version
run: |
git pull
Expand Down

0 comments on commit 05953d8

Please sign in to comment.