https://github.com/atomiechen/reusable-workflows
https://github.com/atomiechen/reusable-workflows
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/atomiechen/reusable-workflows
- Owner: atomiechen
- Created: 2023-06-22T16:24:35.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-16T14:00:35.000Z (over 1 year ago)
- Last Synced: 2025-03-16T14:28:11.103Z (over 1 year ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reusable-workflows
Resuable workflows.
## Publish python distributions
`atomiechen/reusable-workflows/.github/workflows/publish-python-distributions.yml@main`
```yaml
inputs:
publish_testpypi:
type: boolean
default: false
description: Publish to TestPyPI
publish_pypi:
type: boolean
default: false
description: Publish to PyPI
publish_gh_release:
type: boolean
default: true
description: Publish to GitHub Release
release_tag:
type: string
description: Tag to package (empty for latest tag)
required: false
secrets:
TEST_PYPI_API_TOKEN:
required: true
PYPI_API_TOKEN:
required: true
```