We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13bd692 commit 0f6ab98Copy full SHA for 0f6ab98
.github/workflows/github-actions.yml
@@ -33,6 +33,8 @@ jobs:
33
if: startsWith(github.ref, 'refs/tags/')
34
env:
35
CIBW_BEFORE_BUILD_LINUX: "sh ci/install-bluez.sh"
36
+ GATTLIB_PY_VERSION: '${{github.ref_name}}'
37
+ CIBW_ENVIRONMENT_PASS_LINUX: "GATTLIB_PY_VERSION"
38
#TODO: To support 'musllinux', we need to replace 'yum install' by 'apk install' - and detect which platform we are
39
CIBW_SKIP: "*-musllinux_*"
40
- run: ./ci/generate-python-package.sh
@@ -74,8 +76,8 @@ jobs:
74
76
- run: |
75
77
ls *
78
mkdir dist/
- mv python-3.10-binary-package/*.tar.gz dist/
- mv python-*-binary-package/*.whl dist/
79
+ mv *.tar.gz dist/
80
+ mv *.whl dist/
81
ls dist/*
82
- name: Publish distribution 📦 to PyPI
83
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments