We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79cc8bb commit 492544eCopy full SHA for 492544e
.github/workflows/build.yml
@@ -149,6 +149,23 @@ jobs:
149
path: dist/*
150
151
152
+ build-rpi:
153
+ runs-on: rpi
154
+ steps:
155
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
156
+ - uses: actions/checkout@v2
157
+
158
159
+ - name: Build raylib-python-cffi
160
+ run: |
161
+ python setup.py bdist_wheel
162
163
+ - name: Upload build Artifact wheel
164
+ uses: actions/[email protected]
165
+ with:
166
+ name: wheel
167
+ path: dist/*
168
169
build-windows:
170
# The type of runner that the job will run on
171
runs-on: windows-2019
0 commit comments