Skip to content

Commit

Permalink
chore: fix crates.io publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Mar 10, 2025
1 parent ed3ef4a commit 97254d6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:

publish-crates:
name: Publish to crates.io
runs-on: matterlabs-ci-runner-high-performance
runs-on: matterlabs-ci-runner-highdisk
env:
ZKSYNC_USE_CUDA_STUBS: true
steps:
- name: Publish crates
uses: matter-labs/zksync-ci-common/.github/actions/publish-crates@v1
Expand All @@ -40,3 +42,4 @@ jobs:
run_build: ${{ inputs.run-build }}
run_tests: ${{ inputs.run-tests }}
gh_token: ${{ secrets.GITHUB_TOKEN }}
dependencies: 'clang libclang-dev'
1 change: 1 addition & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
upgrade-dependencies: true # Upgrade cross-workspace dependencies
version-suffix: 'non-semver-compat' # Version suffix for the crates.io release
workspace-dirs: 'core prover zkstack_cli' # List of additional workspace directories to update Cargo.lock
dependencies: 'clang libclang-dev' # Additional Linux dependencies to install

# Trigger workflow to publish zkstack binaries
release-zkstack-cli-bins:
Expand Down
1 change: 1 addition & 0 deletions core/bin/custom_genesis_export/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish = false

[dependencies]
clap = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion core/lib/queued_job_processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories.workspace = true
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
tokio = { workspace = true, features = ["time"] }
tokio = { workspace = true, features = ["sync", "time"] }
tracing.workspace = true

zksync_utils.workspace = true
Expand Down
1 change: 1 addition & 0 deletions core/lib/test_contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ repository.workspace = true
license.workspace = true
keywords.workspace = true
categories.workspace = true
publish = false

[dependencies]
zksync_types.workspace = true
Expand Down

0 comments on commit 97254d6

Please sign in to comment.