mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 22:26:42 +00:00
Merge branch 'firehose-fh3.0' into release/geth-1.x-fh3.0
This commit is contained in:
commit
e7c71285fa
1 changed files with 6 additions and 1 deletions
7
.github/workflows/sf-release.yml
vendored
7
.github/workflows/sf-release.yml
vendored
|
|
@ -151,7 +151,12 @@ jobs:
|
|||
- name: Extract image
|
||||
id: image
|
||||
run: |
|
||||
echo "ID=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT"
|
||||
version="edge"
|
||||
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
|
||||
version=${GITHUB_REF#refs/tags/}
|
||||
fi
|
||||
|
||||
echo "ID=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${GITHUB_SHA::7}-${version}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Extract assets
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
|
|
|
|||
Loading…
Reference in a new issue