This action triggers an on-demand package update on Packagist.
Required. The Packagist username to use.
Required. The Packagist api token to use.
The package name to update in vendor/name
form. If not provided, it is taken from composer.json
.
NOTE: To read
composer.json
you need to checkout your code before using this action. If that is not convenient to you, you MUST pass the package name explicitly.
The Packagist domain to call. Default "packagist.org"
.
The packagist job created for your update.
uses: mnavarrocarter/[email protected]
with:
username: "your-username"
api_token: ${{ secrets.packagist_token }}
package_name: vendor/name # No need to be explicit if you have checked out a composer.json
domain: "packagist.org" # This is by default, so no need to specify this.