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

pl.allegro.tech.build.axion.release.PushReleaseTask.groovy Maven / Gradle / Ivy

package pl.allegro.tech.build.axion.release

import org.gradle.api.DefaultTask
import org.gradle.api.tasks.TaskAction
import pl.allegro.tech.build.axion.release.domain.Releaser
import pl.allegro.tech.build.axion.release.infrastructure.di.Context
import pl.allegro.tech.build.axion.release.infrastructure.di.GradleAwareContext

class PushReleaseTask extends DefaultTask {

    @TaskAction
    void release() {
        Context context = GradleAwareContext.create(project)
        
        Releaser releaser = context.releaser()
        releaser.pushRelease()
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy