File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,8 @@ jobs:
317317 # Create and sign headers/libs tarball
318318 - name : Create headers/libs tarball
319319 run : |
320- find ${{ env.BUILD_DIR }} -name "lib*" > /tmp/libfiles.txt
320+ find ${{ env.BUILD_DIR }} -name "lib*" > ./libfiles.txt
321+ ls -l ./libfiles.txt
321322 tar -czf openfx-$RELEASE_NAME.tar.gz \
322323 --exclude='${{ env.BUILD_DIR }}/include/DocSrc' \
323324 --exclude='${{ env.BUILD_DIR }}/include/*.png' \
@@ -326,7 +327,8 @@ jobs:
326327 ${{ env.BUILD_DIR }}/include \
327328 ${{ env.BUILD_DIR }}/Support/include \
328329 ${{ env.BUILD_DIR }}/HostSupport/include \
329- -T /tmp/libfiles.txt
330+ -T ./libfiles.txt
331+ rm ./libfiles.txt
330332
331333 - name : Sign header/libs tarball with Sigstore
332334 uses : sigstore/gh-action-sigstore-python@f514d46b907ebcd5bedc05145c03b69c1edd8b46 # v3.0.0
You can’t perform that action at this time.
0 commit comments