Skip to content

Commit

Permalink
fix-runner
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisbaccour committed Oct 11, 2024
1 parent a1acbbf commit 2314db3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ jobs:
name: Push Docker Images to AWS
environment: CI
runs-on: ${{needs.base.outputs.RUNNER}}
needs: build
needs:
- build
- base
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -158,7 +160,9 @@ jobs:
environment: CI
if: contains('main holesky mainnet v1_base', github.ref_name) || startsWith(github.ref, 'refs/tags/')
runs-on: ${{needs.base.outputs.RUNNER}}
needs: build
needs:
- build
- base
steps:
- name: Log in to Docker Hub
uses: docker/login-action@v3
Expand Down

0 comments on commit 2314db3

Please sign in to comment.