Skip to content

Commit

Permalink
ci: fix workflow order
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Jun 20, 2024
1 parent 20ac195 commit 62150b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
deploy_staging:
name: Deploy Blobscan indexer (staging)
runs-on: ubuntu-latest
needs: docker
environment: staging
steps:
- uses: appleboy/[email protected]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
deploy_sepolia:
name: Deploy Blobscan indexer (sepolia)
runs-on: ubuntu-latest
needs: docker
environment: sepolia
steps:
- uses: appleboy/[email protected]
Expand All @@ -93,6 +94,7 @@ jobs:
deploy_holesky:
name: Deploy Blobscan indexer (holesky)
runs-on: ubuntu-latest
needs: docker
environment: holesky
steps:
- uses: appleboy/[email protected]
Expand All @@ -106,6 +108,7 @@ jobs:
deploy_gnosis:
name: Deploy Blobscan indexer (gnosis)
runs-on: ubuntu-latest
needs: docker
environment: gnosis
steps:
- uses: appleboy/[email protected]
Expand All @@ -119,6 +122,7 @@ jobs:
deploy_mainnet:
name: Deploy Blobscan indexer (mainnet)
runs-on: ubuntu-latest
needs: [deploy_sepolia, deploy_holesky, deploy_gnosis]
environment: mainnet
steps:
- uses: appleboy/[email protected]
Expand Down

0 comments on commit 62150b0

Please sign in to comment.