Skip to content

Commit 04e8008

Browse files
authored
fix: directly copy file instead of streaming to stdin (#771)
* fix: directly copy file instead of streaming to stdin
1 parent 4b42b3b commit 04e8008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/collect-u18-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
- name: Copy binary tarball
120120
run: |
121121
CONTAINER_ID=$(docker create supabase/postgres:u18-binaries)
122-
docker cp "${CONTAINER_ID}:/tmp/pg_binaries/${{ matrix.ubuntu_version }}.tar.gz" - > /tmp/pg_binaries.tar.gz
122+
docker cp "${CONTAINER_ID}:/tmp/pg_binaries/${{ matrix.ubuntu_version }}.tar.gz" /tmp/pg_binaries.tar.gz
123123
docker rm "${CONTAINER_ID}"
124124
125125
- name: configure aws credentials - staging

0 commit comments

Comments
 (0)