Skip to content

Commit

Permalink
Disable semver check and update tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Dec 4, 2024
1 parent 50cec62 commit 9e9e8ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: release
on:
push:
tags:
- "v*.*.*"
- "*-zksync.*"
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
Expand Down
4 changes: 2 additions & 2 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ pr_labels = ["release", "automated"] # Set PR labels
changelog_update = false # Disable individual changelog updates for all packages.
git_tag_enable = false # Disable individual tags for all packages.
git_release_enable = false # Disable individual releases for all packages.
semver_check = true # Enable API breaking changes checks with cargo-semver-checks.
semver_check = false # Enable API breaking changes checks with cargo-semver-checks.

# Use one main package for a common tag for all workspace crates
[[package]]
name = "forge"
git_tag_enable = true # Enable one common tag for all crates
git_tag_name = "v{{version}}" # Tag name
git_tag_name = "0.2.0-zksync.{{version}}" # Tag name

0 comments on commit 9e9e8ff

Please sign in to comment.