Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 528 Bytes

File metadata and controls

22 lines (17 loc) · 528 Bytes

upload-dist

An action to upload a python wheel or sdist.

Usage

The following example yaml code will upload dist/*.tar.gz as an asset called sdist.

- name: Upload sdist
  uses: actions-ext/python/upload-dist@5f78fa2cadf4dad2a7cded3c72655bcdd3dda735
  with:
    kind: 'sdist'

The following example yaml code will upload dist/*.whl as an asset called wheel.

- name: Upload wheel
  uses: actions-ext/python/upload-dist@5f78fa2cadf4dad2a7cded3c72655bcdd3dda735
  with:
    kind: 'wheel'