Skip to content

Commit

Permalink
ci: Enable hugr-cli release, don't create tags (#1119)
Browse files Browse the repository at this point in the history
(Hopefully) the last one of these.

- Sets `release = true` for `hugr-cli`, so it gets processed by
`release-plz`.

- Sets `git_tag_enable = false` instead of `_release`.

- So no tag gets created. Otherwise the following runs fail due to the
unpublished tags
    ```
package `hugr-core` not found in the registry, but the git tag
hugr-core-v0.0.0 exists. Consider running `cargo publish` manually to
publish this package.
    ```

https://github.com/CQCL/hugr/actions/runs/9271530632/job/25507136576#step:4:231

  - This also implies the `_release` flag, since that requires a tag
  • Loading branch information
aborgna-q authored May 28, 2024
1 parent 766e5c3 commit 1dc14fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ release = true

# Disabled until the first version is manually published
publish = false
git_release_enable = false
git_tag_enable = false

[[package]]
name = "hugr-passes"
release = true

# Disabled until the first version is manually published
publish = false
git_release_enable = false

git_tag_enable = false

[[package]]
name = "hugr-cli"
release = true

# Disabled until the first version is manually published
publish = false
git_release_enable = false
git_tag_enable = false

0 comments on commit 1dc14fa

Please sign in to comment.