From 4c77c2bc058a1a0239853135b17d33e5c2b4ab38 Mon Sep 17 00:00:00 2001 From: Matthieu Vachon Date: Sat, 22 Feb 2025 21:53:33 -0500 Subject: [PATCH] Adjusted where we copy files over --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b68ec56a79..3c9de2953b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -120,8 +120,8 @@ jobs: - name: Extract assets if: startsWith(github.ref, 'refs/tags/') run: | - docker cp $(docker create ${{ steps.image.outputs.ID }}-amd64):/usr/local/bin/geth /geth_linux - docker cp $(docker create ${{ steps.image.outputs.ID }}-arm64):/usr/local/bin/geth /geth_linux_arm64 + docker cp $(docker create ${{ steps.image.outputs.ID }}-amd64):/usr/local/bin/geth ./geth_linux + docker cp $(docker create ${{ steps.image.outputs.ID }}-arm64):/usr/local/bin/geth ./geth_linux_arm64 - name: Release uses: softprops/action-gh-release@v2 @@ -130,8 +130,8 @@ jobs: draft: true prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'rc') }} files: | - /geth_linux - /geth_linux_arm64 + ./geth_linux + ./geth_linux_arm64 body: | **Changes:** $(git log --pretty=format:"%h %s" ${{ github.ref }}^..${{ github.ref }})