<@UK4HNFLCB> I had to laugh so hard, when I saw TH...
# pulumiverse
b
@limited-rainbow-51650 I had to laugh so hard, when I saw THIS:
l
Me too. ๐Ÿ˜„
๐Ÿ˜Ž 1
๐Ÿ‘๐Ÿผ 1
b
Perhaps we should configure soem `pre-commit`rules for this. Great tool BTW. Did you ever use it in a project?
@limited-rainbow-51650 just filed the PR for fixing the linting errros
@limited-rainbow-51650 merged the PR. Will you trigger the registry publication process again?
l
Maybe itโ€™s a good thing you try it yourself. One note: donโ€™t use signed git tags for now. (git tag cli arg
--no-sign
)
b
Ummm ... Didn't get you. I created the v0.0.6 tag by myself, what created the first successful publication of the provider. But I mean: who triggers the pipeline in the Registry repo again. Or are the Registry CI connected to the different provider repos and fire when a new release tag in he provider repo is defined?
l
There is a cron job which checks the provider repos for new releases. When a new release is available, a PR is auto-created in the registry repo which is then processed by one of the engineering teams at Pulumi. So nothing to be done by any of us
๐Ÿ‘๐Ÿผ 1
Example of such an automatic PR: https://github.com/pulumi/registry/pull/1410
b
@limited-rainbow-51650 thanks for elaborating on this ๐Ÿ‘๐Ÿผ
@limited-rainbow-51650 just created a new Tag `v0.0.7`without signing. Hope we're done publishing the first version of the Time provider ๐Ÿคž๐Ÿผ Hopefully the Registry pipeline will finish successfully.
@limited-rainbow-51650 I'm a bit surprised: I used
git tag --no-sign v0.0.7
to create the tag. But GitHub is showing it as
verified
. That's a bit odd.
l
Last week, I always had the args reversed:
git tag v0.0.x -m "Some message" --no-sign
b
Ugh ๐Ÿ˜ž Didn't expect that the sequence of parameters to the
tag
command is of any relevance. Thanks for the tip ๐Ÿ‘๐Ÿผ
l
It shouldnโ€™t, according the docs. Not sure what would happen if I would have changed the order of the args on my system. Was just reporting that I had them reversed last week. ๐Ÿ˜‰
๐Ÿ‘๐Ÿผ 1
b
Next time I'll add
--no-sign
at the end of the command like you did. We'll see then what happens