Skip to content

Commit

Permalink
Try with local key definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Nov 18, 2024
1 parent 6459a1b commit bed0980
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,17 @@ jobs:
- framework/target/debug/build
- framework/target/debug/deps
key: cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
- run:
name: Import GPG Key
command: |
echo -e "$GPG_PRIVATE_KEY" | gpg --import
echo -e "trust\n5\ny\n" | gpg --command-fd 0 --edit-key 4C19E4CC17E67B7B
- run:
name: Configure Git for Signing
command: |
git config --global user.signingkey 4C19E4CC17E67B7B
git config --global commit.gpgSign true
echo "test" | gpg --clearsign
- run:
name: Commit and push framework artifacts
command: |
Expand Down Expand Up @@ -230,6 +241,17 @@ jobs:
command: |
set -e
./scripts/wasm-modules-ci.sh
- run:
name: Import GPG Key
command: |
echo -e "$GPG_PRIVATE_KEY" | gpg --import
echo -e "trust\n5\ny\n" | gpg --command-fd 0 --edit-key 4C19E4CC17E67B7B
- run:
name: Configure Git for Signing
command: |
git config --global user.signingkey 4C19E4CC17E67B7B
git config --global commit.gpgSign true
echo "test" | gpg --clearsign
- run:
name: Commit and push module artifacts
command: |
Expand Down

0 comments on commit bed0980

Please sign in to comment.