Skip to content

Commit d46abf1

Browse files
committed
Fix the release's download artifacts step
1 parent e5ad1b4 commit d46abf1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run_id: context.payload.workflow_run.id,
4848
});
4949
let matchedArtifacts = allArtifacts.data.artifacts.filter((artifact) => {
50-
return artifact.name.startsWith("PKGBUILD") || artifact.name.contains("source-package")
50+
return artifact.name.startsWith("PKGBUILD") || artifact.name.includes("source-package")
5151
});
5252
let fs = require('fs');
5353
for(const artifact of matchedArtifacts) {

0 commit comments

Comments
 (0)