Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hubboss / boss / app / commands / push.py
Size: Mime:
from . import base
from ... import commands


class Push(base.BaseCommand):
    help = 'Push Image'
    arguments = (
        dict(dest='repository', action='store', help='Repository to push'),
        (('--tag', '-t'), dict(action='store', help='Push tag to Reghub'))
    )

    def run(self):
        return commands.push(app=self.app, **self.kwargs)