├── .github └── workflows │ ├── create_tags.py │ ├── release.yml │ └── test.yml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh └── full_workflow_example.yml /.github/workflows/create_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/.github/workflows/create_tags.py -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /full_workflow_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalfG/python-wheels-manylinux-build/HEAD/full_workflow_example.yml --------------------------------------------------------------------------------