Skip to content

Commit

Permalink
release: dusk-8 versions (#1219)
Browse files Browse the repository at this point in the history
## Summary
Creates releases needed for dusk-8 release, and adds the new bridge
withdrawer release.
  • Loading branch information
joroshiba committed Jun 27, 2024
1 parent e0907e0 commit bfbfd2f
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 14 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,15 @@ jobs:
package-name: 'sequencer-relayer'
tag: ${{ inputs.tag }}

bridge-withdrawer:
uses: './.github/workflows/reusable-build.yml'
with:
package-name: 'bridge-withdrawer'
tag: ${{ inputs.tag }}

build:
if: ${{ always() && !cancelled() }}
needs: [cli, composer, conductor, sequencer, relayer]
needs: [cli, composer, conductor, sequencer, relayer, bridge-withdrawer]
uses: ./.github/workflows/reusable-success.yml
with:
success: ${{ !contains(needs.*.result, 'failure') }}
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
secrets: inherit

smoke-test:
needs: [run_checker, composer, conductor, sequencer, sequencer-relayer]
needs: [run_checker, composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer]
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'astriaorg/astria') && (github.event_name == 'merge_group' || needs.run_checker.outputs.run_docker == 'true')
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ jobs:
package-name: 'sequencer-relayer'
display-name: 'Sequencer Relayer'

bridge-withdrawer:
needs: run_checker
if: needs.run_checker.outputs.run_release_services == 'true'
uses: ./.github/workflows/reusable-release-cargo.yml
with:
package-name: 'bridge-withdrawer'
display-name: 'EVM Bridge Withdrawer'

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

release:
needs: [proto, conductor, composer, sequencer, sequencer-relayer, cli]
needs: [proto, conductor, composer, sequencer, sequencer-relayer, cli, bridge-withdrawer]
if: ${{ always() && !cancelled() }}
uses: ./.github/workflows/reusable-success.yml
with:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/reusable-release-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: |
steps.release_version.outputs.versionChanged == 'true' &&
github.event_name == 'pull_request' &&
github.base_ref == 'main'
github.base_ref == 'main'
run: |
FILE="${{ format('crates/astria-{0}/Cargo.toml', inputs.package-name) }}"
TITLE="New ${{ inputs.display-name}} Release"
Expand All @@ -53,5 +53,3 @@ jobs:
release_name: ${{ inputs.display-name }} ${{ steps.release_version.outputs.rawVersion }}
draft: true
prerelease: true


8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/astria-composer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astria-composer"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
rust-version = "1.76"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/astria-conductor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astria-conductor"
version = "0.17.0"
version = "0.17.1"
edition = "2021"
rust-version = "1.76"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/astria-sequencer-relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astria-sequencer-relayer"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.76"
Expand Down
2 changes: 1 addition & 1 deletion crates/astria-sequencer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astria-sequencer"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.76"
Expand Down

0 comments on commit bfbfd2f

Please sign in to comment.