mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
Adjusted where we copy files over
This commit is contained in:
parent
25fdf6fc65
commit
4c77c2bc05
1 changed files with 4 additions and 4 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
|
@ -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 }})
|
||||
|
|
|
|||
Loading…
Reference in a new issue