Develop GitHub action to allow plugin developers to automatically upload plugin
Open
- Dominant language
- Python
- Stars
- 11
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
Once CPM Hub was properly established, a GitHub action similar to the actions available for PyPi would allow developers to upload plugins as a workflow step. This would be done each time a new release is created:
```yaml
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}
```
Contributor guide
Assessment
This issue has not been assessed yet.