File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
.github/actions/build-python-packages Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 55 - name : Prepare building packages
66 shell : bash
77 run : |
8- # Make sure that the built packages can be read again
9- umask 000
108 pip install build
119
1210 - name : Build opencue_proto package
4442 run : |
4543 python -m build --outdir packages ./rqd
4644
45+ - name : Fix permissions
46+ shell : bash
47+ run : chmod uog+rwX packages/*.*
48+
4749 - name : Upload opencue packages
4850 uses : actions/upload-artifact@v4
4951 with :
Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ RUN python3 -m pip install --upgrade pip
1616COPY LICENSE ./
1717
1818RUN mkdir /tmp/packages
19- COPY ${OPENCUE_PROTO_PACKAGE_PATH} /tmp/${OPENCUE_PROTO_PACKAGE_PATH}
20- COPY ${OPENCUE_PYCUE_PACKAGE_PATH} /tmp/${OPENCUE_PYCUE_PACKAGE_PATH}
19+ COPY ${OPENCUE_PROTO_PACKAGE_PATH} /tmp/packages
20+ COPY ${OPENCUE_PYCUE_PACKAGE_PATH} /tmp/packages
2121RUN ls -la /tmp/packages
2222
2323RUN python3 -m pip install /tmp/packages/*.whl
You can’t perform that action at this time.
0 commit comments