Skip to content

Commit c0de38a

Browse files
committed
Update
1 parent 74ccccd commit c0de38a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release-pipeline.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ jobs:
6464
- name: Gather package paths
6565
id: package_outputs
6666
run: |
67-
ls -la
68-
ls -la packages
67+
echo "${{ needs.package_outputs.outputs.opencue_proto_path }}"
6968
echo "proto_path=$(ls -a packages/opencue_proto-*.whl)" >> $GITHUB_OUTPUT
7069
echo "rqd_path=$(ls -a packages/opencue_rqd-*.whl)" >> $GITHUB_OUTPUT
7170
echo "pycue_path=$(ls -a packages/opencue_pycue-*.whl)" >> $GITHUB_OUTPUT
@@ -77,7 +76,7 @@ jobs:
7776
- name: Build ${{ matrix.component }} Docker Image
7877
run: |
7978
docker build \
80-
--build-arg OPENCUE_PROTO_PACKAGE_PATH="${{ needs.build_python_packages.outputs.proto_path }}" \
79+
--build-arg OPENCUE_PROTO_PACKAGE_PATH="${{ steps.package_outputs.outputs.proto_path }}" \
8180
--build-arg OPENCUE_RQD_PACKAGE_PATH="${{ steps.package_outputs.outputs.rqd_path }}" \
8281
--build-arg OPENCUE_PYCUE_PACKAGE_PATH="${{ steps.package_outputs.outputs.pycue_path }}" \
8382
--build-arg OPENCUE_PYOUTLINE_PACKAGE_PATH="${{ steps.package_outputs.outputs.pyoutline_path }}" \

0 commit comments

Comments
 (0)