GitHub Actions Usage

In a GitHub Workflow:

name: "Copy PyPI to Releases"
on:
- push

jobs:
  releases:
    runs-on: ubuntu-latest
    steps:
    - uses: domdfcoding/octocheese@v0.7.0
      with:
        pypi_name: "domdf_python_tools"
      env:
        GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Configuration

pypi_name
Type: str
Required: True

The name of the project on PyPI.

The GITHUB_TOKEN must also be supplied otherwise the action will fail.