@@ -78,12 +78,16 @@ jobs:
7878 with :
7979 fetch-depth : 0
8080 fetch-tags : true
81+
8182 - name : Mark repository as safe (Fix for https://github.com/actions/checkout/issues/1048)
8283 run : git config --global --add safe.directory $GITHUB_WORKSPACE
84+
8385 - name : Download a single artifact
8486 uses : actions/download-artifact@v4
8587 with :
8688 name : opencue_packages
89+ path : packages
90+
8791 - name : Run Python Tests
8892 run : |
8993 export OPENCUE_PROTO_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_proto_path }}"
@@ -118,12 +122,16 @@ jobs:
118122 with :
119123 fetch-depth : 0
120124 fetch-tags : true
125+
121126 - name : Mark repository as safe (Fix for https://github.com/actions/checkout/issues/1048)
122127 run : git config --global --add safe.directory $GITHUB_WORKSPACE
128+
123129 - name : Download a single artifact
124130 uses : actions/download-artifact@v4
125131 with :
126132 name : opencue_packages
133+ path : packages
134+
127135 - name : Run Python Tests
128136 run : |
129137 export OPENCUE_PROTO_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_proto_path }}"
@@ -157,12 +165,16 @@ jobs:
157165 with :
158166 fetch-depth : 0
159167 fetch-tags : true
168+
160169 - name : Mark repository as safe (Fix for https://github.com/actions/checkout/issues/1048)
161170 run : git config --global --add safe.directory $GITHUB_WORKSPACE
171+
162172 - name : Download a single artifact
163173 uses : actions/download-artifact@v4
164174 with :
165175 name : opencue_packages
176+ path : packages
177+
166178 - name : Run test
167179 run : |
168180 export OPENCUE_PROTO_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_proto_path }}"
@@ -191,12 +203,16 @@ jobs:
191203 with :
192204 fetch-depth : 0
193205 fetch-tags : true
206+
194207 - name : Mark repository as safe (Fix for https://github.com/actions/checkout/issues/1048)
195208 run : git config --global --add safe.directory $GITHUB_WORKSPACE
209+
196210 - name : Download a single artifact
197211 uses : actions/download-artifact@v4
198212 with :
199213 name : opencue_packages
214+ path : packages
215+
200216 - name : Set package vars from parent action
201217 run : |
202218 export OPENCUE_PROTO_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_proto_path }}"
@@ -205,6 +221,7 @@ jobs:
205221 export OPENCUE_CUEADMIN_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_cueadmin_path }}"
206222 export OPENCUE_CUESUBMIT_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_cuesubmit_path }}"
207223 export OPENCUE_RQD_PACKAGE_PATH="${{ needs.build_opencue_packages.outputs.opencue_rqd_path }}"
224+
208225 - name : Lint Python Code
209226 run : ci/run_python_lint.sh
210227
@@ -219,8 +236,10 @@ jobs:
219236 with :
220237 fetch-depth : 0
221238 fetch-tags : true
239+
222240 - name : Mark repository as safe (Fix for https://github.com/actions/checkout/issues/1048)
223241 run : git config --global --add safe.directory $GITHUB_WORKSPACE
242+
224243 - name : Run Sphinx build
225244 run : ci/build_sphinx_docs.sh
226245
@@ -231,6 +250,7 @@ jobs:
231250 - uses : actions/checkout@v4
232251 with :
233252 fetch-depth : 2
253+
234254 - name : Check for Version Change
235255 run : |
236256 readarray -t changed_files < <(git diff --name-only HEAD^1 HEAD)
0 commit comments