We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e82c1da commit a8dd55bCopy full SHA for a8dd55b
.github/workflows/ci-docker.yml
@@ -317,10 +317,20 @@ jobs:
317
if: ${{ steps.prepare.outputs.artifacts == 'true' }}
318
working-directory: artifacts
319
run: |
320
+ # debug directory
321
+ echo "Current directory: $(pwd)"
322
+ echo "Directory contents: $(ls -Ra)"
323
+
324
# artifacts will be in sub directories named after the docker target platform, e.g. `linux_amd64`
325
# so move files to the artifacts directory
326
# https://unix.stackexchange.com/a/52816
- find ./ -type f -exec mv -t ./ -n '{}' +
327
+ find \
328
+ ./ \
329
+ -maxdepth 2 \
330
+ -mindepth 2 \
331
+ -type f \
332
+ -not -name 'provenance.json' \
333
+ -exec mv -t ./ -n '{}' +
334
335
# remove provenance file
336
rm -f ./provenance.json
0 commit comments