Skip to content

Commit

Permalink
add auctioneer workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bharath-123 committed Feb 25, 2025
1 parent c248d71 commit 85b9f8a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,14 @@ jobs:
package-name: 'bridge-withdrawer'
display-name: 'EVM Bridge Withdrawer'

auctioneer:
needs: run_checker
if: needs.run_checker.outputs.run_release_services == 'true'
uses: ./.github/workflows/reusable-release-cargo.yml
with:
package-name: 'auctioneer'
display-name: 'Auctioneer'

cli:
needs: run_checker
if: needs.run_checker.outputs.run_release_services == 'true'
Expand All @@ -115,7 +123,7 @@ jobs:
display-name: 'CLI'

release:
needs: [proto, conductor, composer, sequencer, sequencer-relayer, cli, bridge-withdrawer]
needs: [proto, conductor, composer, sequencer, sequencer-relayer, cli, bridge-withdrawer, auctioneer]
if: ${{ always() && !cancelled() }}
uses: ./.github/workflows/reusable-success.yml
with:
Expand Down

0 comments on commit 85b9f8a

Please sign in to comment.