mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
Build: fixed signing script issue with circle-ci (#19397)
This commit is contained in:
parent
3bd04d63c4
commit
680a22b898
@ -3,4 +3,3 @@
|
||||
set -e
|
||||
|
||||
git clone git@github.com:torkelo/private.git ~/private-repo
|
||||
cp ~/private-repo/signing/private.key /private.key
|
||||
|
@ -14,7 +14,7 @@ if [ -z "$GPG_KEY_PASSWORD" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
gpg --allow-secret-key-import --import /private.key
|
||||
gpg --allow-secret-key-import --import ~/private-repo/signing/private.key
|
||||
|
||||
cp ./scripts/build/rpmmacros ~/.rpmmacros
|
||||
|
||||
|
@ -2,5 +2,5 @@
|
||||
|
||||
set -e
|
||||
|
||||
gpg --batch --allow-secret-key-import --import /private.key
|
||||
pkill gpg-agent
|
||||
gpg --batch --allow-secret-key-import --import ~/private-repo/signing/private.key
|
||||
pkill gpg-agent
|
||||
|
Loading…
Reference in New Issue
Block a user