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:
parent
44d505ca00
commit
ad3e0863e9
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -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.`);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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.`
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue