Sorry guys, in despite of many experts gave me some advices (here), I still don’t find out how to release a new version of my registered package.
- What I did
- Register a package.
- Add
.github/workflows/TagBot.yml
like this. I think that TagBot said I have to do this for automatic tagging on github. - Add @JuliaRegistrator register() on a commit that I want to release like this.
- What I thought
- Adding
TagBot.yml
will automatically add tags on github, which coincides with the version of my Julia package. And I found that this doesn’t work as I thought. - Adding
@JuliaRegistrator register()
will release a new version. It seems that this actually updated a new version corresponding to a version written inProject.toml
, not released. I mean that a new version can be found indev
mode, while it cannot infree
mode.
Hope anybody helps me, who are aware of registering and managing packages.
Thx