Skip to content

Commit

Permalink
Docker build for op-node
Browse files Browse the repository at this point in the history
  • Loading branch information
avalonche committed Aug 24, 2024
1 parent 2f1c945 commit 2ff4804
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 2 deletions.
80 changes: 80 additions & 0 deletions .github/workflows/release-flashbots.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Release

on:
workflow_dispatch:
push:
tags:
- 'v*'

permissions:
contents: write

jobs:
docker-image:
name: Publish Docker Image
runs-on: ubuntu-latest

steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Get tag version
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Print version
run: |
echo $RELEASE_VERSION
echo ${{ env.RELEASE_VERSION }}
- name: Extract metadata (tags, labels) for Docker images
id: meta
uses: docker/metadata-action@v4
with:
images: flashbots/op-node
tags: |
type=sha
type=pep440,pattern={{version}}
type=pep440,pattern={{major}}.{{minor}}
type=raw,value=latest,enable=${{ !contains(env.RELEASE_VERSION, '-') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.FLASHBOTS_DOCKERHUB_USERNAME }}
password: ${{ secrets.FLASHBOTS_DOCKERHUB_TOKEN }}

- name: Build and push
run: |
GIT_COMMIT=$(git rev-parse HEAD) \
GIT_DATE=$(git show -s --format='%ct') \
IMAGE_TAGS=$(git rev-parse HEAD),latest,${{ steps.meta.outputs.tags }} \
DOCKER_LABELS=${{ steps.meta.outputs.labels }} \
VERSION=${{ env.RELEASE_VERSION }}
docker buildx bake \
--progress plain \
--push \
-f docker-bake.hcl \
op-node
github-release:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
2 changes: 0 additions & 2 deletions pbs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ $ BUILDER_IMAGE=<YOUR_OP_GETH_BUILDER_IMAGE> DEVNET_BUILDER=true make devnet-up

These are the configuration options to enable PBS for the devnet.

Here is the prettified Markdown with fixed indents:

### Sequencer

There are three flags that configure the sequencer to request payloads from the builder API endpoint:
Expand Down

0 comments on commit 2ff4804

Please sign in to comment.