Skip to content

Commit 5e627fb

Browse files
committed
Update
1 parent aea1551 commit 5e627fb

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/actions/build-python-packages/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ runs:
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
@@ -44,6 +42,10 @@ runs:
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:

pycue/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ RUN python3 -m pip install --upgrade pip
1616
COPY LICENSE ./
1717

1818
RUN 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
2121
RUN ls -la /tmp/packages
2222

2323
RUN python3 -m pip install /tmp/packages/*.whl

0 commit comments

Comments
 (0)