Adjusted where we copy files over

This commit is contained in:
Matthieu Vachon 2025-02-22 21:53:33 -05:00
parent 25fdf6fc65
commit 4c77c2bc05

View file

@ -120,8 +120,8 @@ jobs:
- name: Extract assets - name: Extract assets
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
run: | run: |
docker cp $(docker create ${{ steps.image.outputs.ID }}-amd64):/usr/local/bin/geth /geth_linux 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 }}-arm64):/usr/local/bin/geth ./geth_linux_arm64
- name: Release - name: Release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
@ -130,8 +130,8 @@ jobs:
draft: true draft: true
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'rc') }} prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
files: | files: |
/geth_linux ./geth_linux
/geth_linux_arm64 ./geth_linux_arm64
body: | body: |
**Changes:** **Changes:**
$(git log --pretty=format:"%h %s" ${{ github.ref }}^..${{ github.ref }}) $(git log --pretty=format:"%h %s" ${{ github.ref }}^..${{ github.ref }})