An action to upload a python wheel
or sdist
.
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'