io.github.devsecops.engine.domain.git.instructions.GitPushInstruction Maven / Gradle / Ivy
package io.github.devsecops.engine.domain.git.instructions;
import io.github.devsecops.engine.core.contract.Instruction;
import lombok.AllArgsConstructor;
import lombok.Builder;
@Builder
@AllArgsConstructor
public class GitPushInstruction implements Instruction {
private static final String CMD =
"git push origin --tags && " +
"git push origin";
@Override
public String getCmd() {
return String.format(CMD);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy