Skip to content

Commit

Permalink
upgrade bsc to v1.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
HanWang233 committed Jul 13, 2022
1 parent 1f16c0a commit 0e55daa
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 902 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/build-test.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: GethPublisher

on:
workflow_dispatch:
push:
branches: [ dev-hanwang-v1.1.11 ]

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
25 changes: 0 additions & 25 deletions .github/workflows/integration-test.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/lint.yml

This file was deleted.

Loading

0 comments on commit 0e55daa

Please sign in to comment.