Skip to content

thibaultduponchelle/action-upload-to-cpan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a026cc0 Β· Feb 16, 2022

History

18 Commits
Mar 17, 2021
Feb 16, 2022
Mar 17, 2021
Mar 26, 2021
Mar 17, 2021

Repository files navigation

Upload to CPAN github action

WARNING: This github action is very young, use at your own risks πŸ˜€

This action upload your distribution to CPAN

It requires that you generated the dist to have a My-Distribution-0.01.tar.gz lying around πŸ˜€

Inputs

Set your credentials as github secrets and give them to with, they won't be printed during the whole process (they are "secret" after all! πŸ˜„)

username

Required The name of the PAUSE account to use.

password

Required The password of the PAUSE account to use.

Example usage

uses: actions/action-upload-to-cpan@master
with:
  username: ${{ secrets.USERNAME }}
  password: ${{ secrets.PASSWORD }}

For an ExtUtils::MakeMaker module, you can then write a .github/workflows/build-and-action.yml like this:

on: [push]

jobs:
  build-and-release:
    runs-on: ubuntu-latest
    name: Build and release 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
      id: upload
      uses: thibaultduponchelle/action-upload-to-cpan@master
      with:
          username: ${{ secrets.USERNAME }}
          password: ${{ secrets.PASSWORD }}

Details

This github actions is based on cpan-upload and will produce this kind of logs if the upload is a success:

registering upload with PAUSE web server
POSTing upload for Acme-Automatix-0.02.tar.gz to https://pause.perl.org/pause/authenquery?ACTION=add_uri
PAUSE add message sent ok [200]

Troubleshooting

Unauthorized

You will get this message if your user/password are not correct:

registering upload with PAUSE web server
POSTing upload for Acme-Automatix-0.01.tar.gz to https://pause.perl.org/pause/authenquery?ACTION=add_uri
Upload failed (request failed with error code 401
  Message: Unauthorized
), will make attempt #1 ...

Conflict

You will get this message if your distribution already exists with the same version:

Failed to upload and reached maximum retry count!
registering upload with PAUSE web server
POSTing upload for Acme-Automatix-0.11.tar.gz to https://pause.perl.org/pause/authenquery?ACTION=add_uri
Upload failed (request failed with error code 409
  Message: Conflict
)

About

:octocat: Github action to upload your distribution to CPAN

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published