This commit is contained in:
Radostina Lyubomirova 2025-06-03 17:17:03 +03:00
parent 4577b47b80
commit 4d550d9511
2 changed files with 5 additions and 52 deletions

View file

@ -16,11 +16,12 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Log in to DockerHub - name: Log in to GitHub Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_USERNAME }} registry: ghcr.io
password: ${{ secrets.DOCKER_PASSWORD }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker Image - name: Build and Push Docker Image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
@ -28,4 +29,4 @@ jobs:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
push: true push: true
tags: yourdockeruser/go-ethereum:dev-latest tags: ghcr.io/${{ github.repository_owner }}/go-ethereum:dev-latest

View file

@ -1,48 +0,0 @@
# name: i386 linux tests
# on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
# workflow_dispatch:
# jobs:
# lint:
# name: Lint
# runs-on: self-hosted
# steps:
# - uses: actions/checkout@v4
# # Cache build tools to avoid downloading them each time
# - uses: actions/cache@v4
# with:
# path: build/cache
# key: ${{ runner.os }}-build-tools-cache-${{ hashFiles('build/checksums.txt') }}
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: 1.23.0
# cache: false
# - name: Run linters
# run: |
# go run build/ci.go lint
# go run build/ci.go check_generate
# go run build/ci.go check_baddeps
# build:
# runs-on: self-hosted
# steps:
# - uses: actions/checkout@v4
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: 1.24.0
# cache: false
# - name: Run tests
# run: go test -short ./...
# env:
# GOOS: linux
# GOARCH: 386