Acme-Automatix

 view release on metacpan or  search on metacpan

.github/workflows/build-and-upload.yml  view on Meta::CPAN

    name: Build and release Acme::Automatix to CPAN
    steps:
    - uses: actions/checkout@v2
    - name: Configure
      run: perl Makefile.PL
    - name: Build
      run: make
    - name: Deliver locally
      run: make dist
    - name: Upload to CPAN
      uses: thibaultduponchelle/action-upload-to-cpan@master
      with:
          username: ${{ secrets.USERNAME }}
          password: ${{ secrets.PASSWORD }}

MANIFEST  view on Meta::CPAN

.github/workflows/build-and-upload.yml
Changes
lib/Acme/Automatix.pm
Makefile.PL
MANIFEST			This list of files
README.md
t/00-load.t
t/manifest.t
t/pod-coverage.t
t/pod.t
META.yml                                 Module YAML meta-data (added by MakeMaker)

README.md  view on Meta::CPAN

# Acme-Automatix

This is a toy module just used to test [Github action "action-upload-to-cpan"](https://github.com/thibaultduponchelle/action-upload-to-cpan)

The release is *automatix*! :D

## INSTALLATION

To install this module (that actually has no goal), run the following commands:

	perl Makefile.PL
	make
	make test
	make install

## SUPPORT AND DOCUMENTATION

You also look for information at [Acme-Automatix](https://github.com/thibaultduponchelle/Acme-Automatix) or [Github action "action-upload-to-cpan"](https://github.com/thibaultduponchelle/action-upload-to-cpan)

## LICENSE AND COPYRIGHT

This software is Copyright (c) 2021 by Thibault Duponchelle.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)

lib/Acme/Automatix.pm  view on Meta::CPAN


our $VERSION = '0.12';


=head1 SYNOPSIS

Quick summary of what the module does...

Nothing!

It is used as a demo of the github action L<upload-to-cpan|https://github.com/thibaultduponchelle/upload-to-cpan>

See how it is L<automatically released|https://github.com/thibaultduponchelle/Acme-Automatix/blob/master/.github/workflows/build-and-upload.yml>

=head1 AUTHOR

Thibault Duponchelle, C<< <thibault.duponchelle at gmail.com> >>

=head1 LICENSE AND COPYRIGHT

This software is Copyright (c) 2021 by Thibault Duponchelle.

This is free software, licensed under:



( run in 1.285 second using v1.01-cache-2.11-cpan-b16cb0d3907 )