Skip to content

feat: add opbnb mainnet Fermat fork height (#30) #15

feat: add opbnb mainnet Fermat fork height (#30)

feat: add opbnb mainnet Fermat fork height (#30) #15

Workflow file for this run

name: DockerImage build and push
on:
workflow_dispatch:
push:
branches:
- develop
- main
tags: '*'
jobs:
# Push image to GitHub Packages.
push-op-geth:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: image meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository_owner }}/op-geth
tags: |
type=ref,event=branch
type=ref,event=tag
type=semver,pattern={{version}}
type=sha
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}