Skip to content

Commit

Permalink
Merge pull request #30 from flashbots/docker-build
Browse files Browse the repository at this point in the history
Docker build for op-node
  • Loading branch information
avalonche authored Aug 27, 2024
2 parents 87ccb0b + 5263d1e commit 5836c44
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 2 deletions.
82 changes: 82 additions & 0 deletions .github/workflows/release-flashbots.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
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
uses: docker/build-push-action@v3
with:
context: .
file: ops/docker/op-stack-go/Dockerfile
push: true
target: op-node-target
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
GIT_COMMIT=${{ github.sha }}
GIT_DATE=${{ github.event.head_commit.timestamp }}
OP_NODE_VERSION=${{ env.RELEASE_VERSION }}
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 5836c44

Please sign in to comment.