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
|
- 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 }})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue