diff options
Diffstat (limited to 'lib/oxidized/hook/githubrepo.rb')
-rw-r--r-- | lib/oxidized/hook/githubrepo.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/oxidized/hook/githubrepo.rb b/lib/oxidized/hook/githubrepo.rb new file mode 100644 index 0000000..85adaab --- /dev/null +++ b/lib/oxidized/hook/githubrepo.rb @@ -0,0 +1,14 @@ +class GithubRepo < Oxidized::Hook + def validate_cfg! + cfg.has_key?('remote_repo') or raise KeyError, 'remote_repo is required' + end + + def run_hook(ctx) + credentials = Rugged::Credentials::SshKeyFromAgent.new(username: 'git') + 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) + log "to remote: #{remote.url}" + remote.push(['refs/heads/master'], credentials: credentials) + end +end |