Skip to content

Commit cf010bc

Browse files
committed
ci: correctly copy binaries in draft-release workflow (#591)
1 parent 82e7b7a commit cf010bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/draft-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
run: |
4949
docker create -it --entrypoint sh --name amd --platform linux/amd64 ${{ env.REGISTRY }}/${{ github.repository }}:${{ github.ref_name }}
5050
docker create -it --entrypoint sh --name arm --platform linux/arm64 ${{ env.REGISTRY }}/${{ github.repository }}:${{ github.ref_name }}
51-
docker cp amd:/bin/nobled ./nobled_linux-amd64
52-
docker cp arm:/bin/nobled ./nobled_linux-arm64
51+
docker cp amd:/usr/bin/nobled ./nobled_linux-amd64
52+
docker cp arm:/usr/bin/nobled ./nobled_linux-arm64
5353
sha256sum ./nobled_linux-amd64 > ./checksum.txt
5454
sha256sum ./nobled_linux-arm64 >> ./checksum.txt
5555

0 commit comments

Comments
 (0)