We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67bd69e commit 9e6457bCopy full SHA for 9e6457b
1 file changed
.github/workflows/main.yml
@@ -81,5 +81,16 @@ jobs:
81
- name: Upload Python wheel
82
uses: actions/upload-artifact@v4
83
with:
84
- name: dw-python-wheel-${{runner.os}}
+ name: dw-python-wheel-${{env.NATIVE_VERSION}}-${{runner.os}}
85
path: native-lib/python/dist/dataweave_native-0.0.1-py3-*.whl
86
+
87
+ # Upload the native shared library + header together per OS
88
+ - name: Upload native shared library
89
+ uses: actions/upload-artifact@v4
90
+ with:
91
+ name: dwlib-${{env.NATIVE_VERSION}}-${{runner.os}}
92
+ path: |
93
+ native-lib/python/src/dataweave/native/dwlib.dylib
94
+ native-lib/python/src/dataweave/native/dwlib.so
95
+ native-lib/python/src/dataweave/native/dwlib.dll
96
+ native-lib/python/src/dataweave/native/dwlib.h
0 commit comments