From 00588ffae742120fdc34e5f29860eb276ee0a6cf Mon Sep 17 00:00:00 2001 From: Stilian Boyadzhiev Date: Thu, 29 May 2025 20:30:08 +0300 Subject: [PATCH] rename of github actions yml definition and set docker push to registry to false for manual workflows --- .../workflows/{hell.yml => docker-build-hell.yml} | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) rename .github/workflows/{hell.yml => docker-build-hell.yml} (77%) diff --git a/.github/workflows/hell.yml b/.github/workflows/docker-build-hell.yml similarity index 77% rename from .github/workflows/hell.yml rename to .github/workflows/docker-build-hell.yml index f074b49011..06f9af541f 100644 --- a/.github/workflows/hell.yml +++ b/.github/workflows/docker-build-hell.yml @@ -21,6 +21,13 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + # Log in to Docker Hub – store secrets in repo → Settings → Secrets and variables → Actions + # - name: Log in to Docker Hub + # uses: docker/login-action@v3 + # with: + # username: ${{ secrets.DOCKERHUB_USERNAME }} + # password: ${{ secrets.DOCKERHUB_TOKEN }} + # Build (and optionally push) the image - name: Build and push image uses: docker/build-push-action@v5 @@ -29,7 +36,8 @@ jobs: file: ./Dockerfile # Path to the Dockerfile if not root platforms: linux/amd64 # Add ,linux/arm64 if you need multi-arch push: true # Change to false to keep image local to runner - tags: go-etherium-satan:latest + tags: go-etherium-satan:latest + ci-build-manual: if: github.event_name == 'workflow_dispatch' runs-on: ubuntu-latest @@ -49,5 +57,5 @@ jobs: context: . file: ./Dockerfile # Path to the Dockerfile if not root platforms: linux/amd64 # Add ,linux/arm64 if you need multi-arch - push: true # Change to false to keep image local to runner + push: false # Change to false to keep image local to runner tags: go-etherium-satan:latest