File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
os : [macos-13, windows-latest, ubuntu-latest, macos-14]
14
- python-version : ["3.11"]
15
14
fail-fast : false
16
15
runs-on : ${{ matrix.os }}
17
16
defaults :
28
27
- name : Set up Python
29
28
uses : actions/setup-python@v5
30
29
with :
31
- python-version : ${{ matrix.python-version }}
30
+ python-version : " 3.11 "
32
31
33
32
- uses : abatilo/actions-poetry@v3
34
33
55
54
cibuildwheel --output-dir wheelhouse
56
55
env :
57
56
CIBW_BEFORE_BUILD_LINUX : |
58
- curl -L -o graalvm.tar.gz https://github.com/graalvm/graalvm-ce-builds/releases/download/vm -23.0.2/graalvm-community-linux-amd64- 23.0.2 .tar.gz
57
+ curl -L -o graalvm.tar.gz https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk -23.0.2/graalvm-community-jdk- 23.0.2_linux-x64_bin .tar.gz
59
58
tar -xzf graalvm.tar.gz -C /opt
59
+ export JAVA_HOME=/opt/graalvm-ce-23.0.2
60
60
export GRAALVM_HOME=/opt/graalvm-ce-23.0.2
61
61
export PATH=$GRAALVM_HOME/bin:$PATH
62
62
gu install native-image
@@ -69,11 +69,11 @@ jobs:
69
69
mkdir -p dist
70
70
cp wheelhouse/*.whl dist/
71
71
72
- # - name: Publish to PyPI
73
- # run: |
74
- # poetry publish --no-interaction
75
- # env:
76
- # POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
72
+ - name : Publish to PyPI
73
+ run : |
74
+ make publish
75
+ env :
76
+ POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_TOKEN }}
77
77
78
78
- name : Setup tmate
79
79
if : failure()
You can’t perform that action at this time.
0 commit comments