There was an error while loading. Please reload this page.
1 parent 0cfe870 commit 3392389Copy full SHA for 3392389
1 file changed
.github/workflows/build_python_zip.yaml
@@ -0,0 +1,28 @@
1
+name: Build Python Zip
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ python-wheels:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v2
17
+ - name: Setup Python
18
+ uses: actions/setup-python@v2
19
+ with:
20
+ python-version: '3.12.9'
21
+ - name: Build Python zip
22
+ run: python3 get_deps.py
23
+ - name: Upload zip
24
+ uses: actions/upload-artifact@v4
25
26
+ name: python_zip
27
+ path: |
28
+ ./*.zip
0 commit comments