In csaf and ssvc, the cargo publish job currently uses the same condition:
if: startsWith(github.ref, 'refs/tags/v') &&
!contains(github.ref, 'beta') &&
!contains(github.ref, 'alpha')
In vers-rs, publishing is instead controlled by the workflow trigger:
Since we are planning to use the shared cargo publish workflow, perhaps the release condition could also be centralized there.
We should decide whether the publish policy should actually be the same for all repositories, especially regarding alpha and beta releases.
In
csafandssvc, the cargo publish job currently uses the same condition:In
vers-rs, publishing is instead controlled by the workflow trigger:Since we are planning to use the shared cargo publish workflow, perhaps the release condition could also be centralized there.
We should decide whether the publish policy should actually be the same for all repositories, especially regarding alpha and beta releases.