nexus publishing has changed, so snapshots were fa...
# kotest-contributors
s
nexus publishing has changed, so snapshots were failing for the last week or two. I've updated the secrets which should fix it on next run.
👍 3
I think the gradle snapshot publication is broken though. That's what it's failing on now.
Looks like the gradle plugin still having issues @Adam S https://github.com/kotest/kotest/actions/runs/10023213798/job/27704142128
That's a build after the fix attempt
a
yup :(
s
Should we disable gradle plugin snapshots for now so we can get snapshots working again ?
a
I wanted to keep it enabled, in case Sonatype respond quickly
we could add
--continue
, so the other artifacts will get published
s
ok
lets do that
a
okay cool, I'll make a quick pr
👍🏻 1
I think that adding the
--continue
flag will help in general actually. We can remove all of the GitHub Workflows for creating a specific release, and just re-run the 'master publish' workflow. Some of the previously published publications will fail, but that's okay, because of
--continue
, Gradle will ignore those failures.
s
Master is still failing btw, but happy to add continue everywhere (not that I'm entirely sure what it does)
a
--continue
== Gradle ignores failing tasks
'continue on error'
s
so if we publish 1, 3 and 4
we re-run it, 1 will fail, 2 will publish, 3 and 4 will fail
all ends up gravy
a
exactly
(hopefully)
s
ok sounds good