Skip to content

Commit

Permalink
Add .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Nov 12, 2024
1 parent 7413a12 commit defdd48
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,16 @@ jobs:
steps:
- setup_remote_docker
- checkout
- run:
name: Import GPG Key
command: |
echo "$GPG_PRIVATE_KEY" | gpg --import
echo "" | gpg --batch --yes --pinentry-mode loopback --passphrase-fd 0 --edit-key 4C19E4CC17E67B7B trust quit
- run:
name: Configure Git for Signing
command: |
git config --global user.signingkey 4C19E4CC17E67B7B
git config --global commit.gpgSign true
- run:
name: "Merge build branch"
command: |
Expand All @@ -262,7 +272,7 @@ jobs:
git fetch origin "$CIRCLE_BRANCH-build"
# Merge artifacts to a branch
git merge "origin/$CIRCLE_BRANCH-build" --squash
git commit -m "Update WASM & Schemas [skip ci]" || echo "No changes to commit"
git commit -S -m "Update WASM & Schemas [skip ci]" || echo "No changes to commit"
git push origin $CIRCLE_BRANCH || true
# Delete temporary branch
git push origin --delete "$CIRCLE_BRANCH-build"
Expand Down

0 comments on commit defdd48

Please sign in to comment.