Skip to content

Commit

Permalink
Make use of renamed '_' prefixed docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rimrakhimov committed Jun 26, 2024
1 parent 9808ca3 commit beee58d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/da-indexer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: da-indexer
2 changes: 1 addition & 1 deletion .github/workflows/eth-bytecode-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: eth-bytecode-db
2 changes: 1 addition & 1 deletion .github/workflows/proxy-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: proxy-verifier
2 changes: 1 addition & 1 deletion .github/workflows/sig-provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: sig-provider
2 changes: 1 addition & 1 deletion .github/workflows/smart-contract-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: smart-contract-verifier
2 changes: 1 addition & 1 deletion .github/workflows/smart-guessr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:
if: |
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: smart-guessr
2 changes: 1 addition & 1 deletion .github/workflows/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: stats
2 changes: 1 addition & 1 deletion .github/workflows/user-ops-indexer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: user-ops-indexer
2 changes: 1 addition & 1 deletion .github/workflows/visualizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ jobs:
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/docker-build-push.yml
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: visualizer

0 comments on commit beee58d

Please sign in to comment.