Invert condition (demo)

This commit is contained in:
Ryan Ghadimi 2025-03-11 22:23:54 +00:00
parent 70545ed570
commit ae7a633d32

View File

@ -129,7 +129,7 @@ async function run(): Promise<void> {
for (const dlPromise of downloadPromises) {
const outcome = await dlPromise
if (outcome.digestMismatch) {
if (!outcome.digestMismatch) {
core.warning(
`Artifact digest validation failed. Please verify the integrity of the artifact.`
)