mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
Merge pull request #2 from MorettiGeorgiev/deploy-image-ecr
Deploy image ecr
This commit is contained in:
commit
aedd76b75d
1 changed files with 27 additions and 17 deletions
44
.github/workflows/docker-build.yml
vendored
44
.github/workflows/docker-build.yml
vendored
|
|
@ -4,27 +4,37 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [closed]
|
types: [closed]
|
||||||
|
|
||||||
|
env:
|
||||||
|
AWS_REGION: ${{ vars.AWS_REGION }}
|
||||||
|
REPO_URL: ${{ vars.ECR_REPO_URL }}
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'CI:Build')
|
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'CI:Build')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v2
|
|
||||||
|
|
||||||
- name: Build Docker image
|
|
||||||
uses: docker/build-push-action@v4
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
push: false
|
|
||||||
tags: ethereum/client-go:latest
|
|
||||||
load: true
|
|
||||||
cache-from: type=gha,scope=go-ethereum
|
|
||||||
cache-to: type=gha,mode=max,scope=go-ethereum
|
|
||||||
|
|
||||||
- name: Test Docker image
|
- name: Setup AWS CLI credentials
|
||||||
run: docker run --rm ethereum/client-go:latest version
|
uses: aws-actions/configure-aws-credentials@v4
|
||||||
|
with:
|
||||||
|
aws-access-key-id: ${{ env.AWS_ACCESS_KEY_ID }}
|
||||||
|
aws-secret-access-key: ${{ env.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
aws-region: ${{ env.AWS_REGION }}
|
||||||
|
|
||||||
|
- name: Login to Amazon ECR
|
||||||
|
run: aws ecr get-login-password --region ${{ env.AWS_REGION }} | docker login --username AWS --password-stdin ${{ env.REPO_URL }}
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ${{ env.REPO_URL }}/limechain/geth:latest
|
||||||
|
|
||||||
|
- name: Test Docker image
|
||||||
|
run: docker run --rm ethereum/client-go:latest version
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue