From ec1b36474b97e85d47e701362aee6fab9fef7c65 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Mon, 5 Jun 2023 10:41:11 -0400 Subject: [PATCH] update automatic docker builds for the correct branch (#4375) --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0cda0fd76..fd0011645 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -5,7 +5,7 @@ on: branches: - unstable - stable - - eip4844 + - deneb-free-blobs tags: - v* @@ -35,10 +35,10 @@ jobs: run: | echo "VERSION=latest" >> $GITHUB_ENV echo "VERSION_SUFFIX=-unstable" >> $GITHUB_ENV - - name: Extract version (if eip4844) - if: github.event.ref == 'refs/heads/eip4844' + - name: Extract version (if deneb) + if: github.event.ref == 'refs/heads/deneb-free-blobs' run: | - echo "VERSION=eip4844" >> $GITHUB_ENV + echo "VERSION=deneb" >> $GITHUB_ENV echo "VERSION_SUFFIX=" >> $GITHUB_ENV - name: Extract version (if tagged release) if: startsWith(github.event.ref, 'refs/tags')