diff options
author | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-12-04 00:30:39 -0500 |
---|---|---|
committer | Elvin Efendi <elvin.efendiyev@gmail.com> | 2015-12-04 00:30:39 -0500 |
commit | aaab6f34b966e69e5c01af844827dd13c5899ecf (patch) | |
tree | f9753ab3307ae57a8e6fe93ce0e8c4c394eebfa6 /lib/oxidized/hook/githubrepo.rb | |
parent | 84697f6440d156e264962cf74b61c8ef90ed187c (diff) | |
parent | 71f38cc19411c482c3cd932976a5183e089226eb (diff) |
Merge pull request #5 from Shopify/https-auth
user password username for github api
Diffstat (limited to 'lib/oxidized/hook/githubrepo.rb')
-rw-r--r-- | lib/oxidized/hook/githubrepo.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oxidized/hook/githubrepo.rb b/lib/oxidized/hook/githubrepo.rb index 85adaab..fe73015 100644 --- a/lib/oxidized/hook/githubrepo.rb +++ b/lib/oxidized/hook/githubrepo.rb @@ -4,7 +4,7 @@ class GithubRepo < Oxidized::Hook end def run_hook(ctx) - credentials = Rugged::Credentials::SshKeyFromAgent.new(username: 'git') + credentials = Rugged::Credentials::UserPassword.new(username: cfg.username, password: cfg.password) repo = Rugged::Repository.new(Oxidized.config.output.git.repo) log "Pushing local repository(#{repo.path})..." remote = repo.remotes['origin'] || repo.remotes.create('origin', cfg.remote_repo) |