diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index aa9ac13..56ca209 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -33,6 +33,7 @@ jobs: args: --all --all-features -- -D warnings build-test: + name: Run tests runs-on: ubuntu-latest needs: lint @@ -44,6 +45,7 @@ jobs: run: cargo test --verbose docker: + name: Build docker image runs-on: ubuntu-latest needs: build-test @@ -76,7 +78,7 @@ jobs: labels: ${{ steps.meta.outputs.labels }} deploy_staging: - name: Deploy Blobscan indexer (staging) + name: Deploy to staging runs-on: ubuntu-latest needs: docker environment: staging diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 084ac36..20d13f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,7 @@ jobs: args: --all --all-features -- -D warnings build-test: + name: Run tests runs-on: ubuntu-latest needs: lint @@ -46,6 +47,7 @@ jobs: run: cargo test --verbose docker: + name: Build docker image runs-on: ubuntu-latest needs: build-test @@ -78,7 +80,7 @@ jobs: labels: ${{ steps.meta.outputs.labels }} deploy_sepolia: - name: Deploy Blobscan indexer (sepolia) + name: Deploy (sepolia) runs-on: ubuntu-latest needs: docker environment: sepolia @@ -92,7 +94,7 @@ jobs: script: ./deploy-blobscan-indexer.rs.sh deploy_holesky: - name: Deploy Blobscan indexer (holesky) + name: Deploy (holesky) runs-on: ubuntu-latest needs: docker environment: holesky @@ -106,7 +108,7 @@ jobs: script: ./deploy-blobscan-indexer.rs.sh deploy_gnosis: - name: Deploy Blobscan indexer (gnosis) + name: Deploy (gnosis) runs-on: ubuntu-latest needs: docker environment: gnosis @@ -120,7 +122,7 @@ jobs: script: ./deploy-blobscan-indexer.rs.sh deploy_mainnet: - name: Deploy Blobscan indexer (mainnet) + name: Deploy (mainnet) runs-on: ubuntu-latest needs: [deploy_sepolia, deploy_holesky, deploy_gnosis] environment: mainnet