The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Dist::Release::Action;

use Moose;

extends 'Dist::Release::Step';
our $VERSION = '0.0_5';

sub check {

    # its okay for an action not to have a check phase
    $_[0]->diag('no check implemented');
}

sub release {
    $_[0]->error('release not implemented!');
}

before release => sub {
    my $self = shift;
    $self->set_failed(0);
};

1;