File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 55
55
uses : actions/upload-artifact@v4
56
56
with :
57
57
name : dist-${{ strategy.job-index }}
58
- path : dist/oss*.whl
58
+ path : dist/oss*
59
59
60
60
release :
61
61
name : " Tagged Release"
81
81
repo_token : " ${{ secrets.GITHUB_TOKEN }}"
82
82
automatic_release_tag : " ${{ env.RELEASE_TAG }}"
83
83
prerelease : false
84
- files : dist/oss*.whl
84
+ files : dist/oss*
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ RUN export PATH="/opt/python/${PY_ABI_TAG}/bin:$PATH" && \
18
18
echo -e "[build_ext]\n library_path=${libconnector}" > setup.cfg && \
19
19
cat setup.cfg && \
20
20
python3 -u setup.py bdist_wheel && \
21
- auditwheel repair dist/oss*.whl -w repaired_wheel
21
+ auditwheel repair dist/oss*.whl -w repaired_wheel && \
22
+ find . -type f -name "oss-connector-lib-*" -exec cp {} repaired_wheel/ \;
22
23
23
24
FROM scratch
24
- COPY --from=builder /libconnector/repaired_wheel/oss*.whl /
25
+ COPY --from=builder /libconnector/repaired_wheel/oss* /
You can’t perform that action at this time.
0 commit comments