Skip to content

Latest commit

 

History

History

upload-dist

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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@v1
  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@v1
  with:
    kind: 'wheel'