1
0
Fork 0
mirror of https://code.forgejo.org/actions/download-artifact synced 2025-06-08 04:58:20 +02:00

Remove last bit of test statement

This commit is contained in:
Ryan Ghadimi 2025-03-11 22:34:15 +00:00
parent 44d505ca00
commit ad3e0863e9
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -118786,7 +118786,7 @@ function run() {
}
for (const dlPromise of downloadPromises) {
const outcome = yield dlPromise;
if (!outcome.digestMismatch) {
if (outcome.digestMismatch) {
core.warning(`Artifact digest validation failed. Please verify the integrity of the artifact.`);
}
}

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.`
)