-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9da0308
commit 3e7119c
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ if [[ "${GITHUB_EVENT_NAME}" == "push" ]]; then | |
eval "$(ssh-agent -s)" | ||
chmod 600 local.deploy_key.pem | ||
ssh-add local.deploy_key.pem | ||
chmod 600 secring.gpg | ||
chmod 600 pubring.gpg | ||
chmod 600 local.secring.gpg | ||
chmod 600 local.pubring.gpg | ||
mkdir -p ~/.gnupg | ||
mv secring.gpg ~/.gnupg/secring.gpg | ||
mv pubring.gpg ~/.gnupg/pubring.gpg | ||
mv local.secring.gpg ~/.gnupg/secring.gpg | ||
mv local.pubring.gpg ~/.gnupg/pubring.gpg | ||
git config --global user.name "Finch CI" | ||
git config --global user.email "[email protected]" | ||
git remote set-url origin [email protected]:finagle/finch.git | ||
|