All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.build.axion.release.domain.hooks.PushHookAction Maven / Gradle / Ivy

There is a newer version: 1.18.15
Show newest version
package pl.allegro.tech.build.axion.release.domain.hooks;

public class PushHookAction implements ReleaseHookAction {

    @Override
    public void act(HookContext hookContext) {
        hookContext.push();
    }

    public final static class Factory extends DefaultReleaseHookFactory {
        @Override
        public ReleaseHookAction create() {
            return new PushHookAction();
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy