create automatic docker build for eip4844

This commit is contained in:
realbigsean 2022-12-28 11:11:17 -05:00
parent 019467840f
commit 6d85930520
No known key found for this signature in database
GPG Key ID: B372B64D866BF8CC

View File

@ -6,6 +6,7 @@ on:
- unstable
- stable
- capella
- eip4844
tags:
- v*
@ -40,6 +41,11 @@ jobs:
run: |
echo "VERSION=capella" >> $GITHUB_ENV
echo "VERSION_SUFFIX=" >> $GITHUB_ENV
- name: Extract version (if eip4844)
if: github.event.ref == 'refs/heads/eip4844'
run: |
echo "VERSION=eip4844" >> $GITHUB_ENV
echo "VERSION_SUFFIX=" >> $GITHUB_ENV
- name: Extract version (if tagged release)
if: startsWith(github.event.ref, 'refs/tags')
run: |