fghdfh
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-rootfs-archives (push) Failing after 1m35s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been skipped

This commit is contained in:
2025-07-08 21:09:38 -07:00
parent ae5e40e07f
commit a471b7011d

View File

@@ -47,13 +47,11 @@ jobs:
debian \ debian \
bash -c "echo hello-world > /output/hello.txt" bash -c "echo hello-world > /output/hello.txt"
- name: Extract file from volume - name: Copy file from volume to workspace
run: | run: |
docker run --rm \ container_id=$(docker create -v build_output:/output debian)
-v build_output:/output \ docker cp "$container_id:/output/hello.txt" ./output.txt
-v "$(pwd):/workspace" \ docker rm "$container_id"
debian \
bash -c "cp /output/hello.txt /workspace/output.txt"
- name: Read output.txt - name: Read output.txt
run: | run: |