Skip to content

Commit

Permalink
Testing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrassia committed Dec 21, 2023
1 parent ce529e1 commit 2a56197
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions download-artifacts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function main() {
const token = core.getInput("github_token", { required: true })
const [owner, repo] = core.getInput("repo", { required: true }).split("/")
const path = core.getInput("path", { required: true })
const name = core.getInput("artifacts")
const names = core.getInput("artifacts")
const nameIsRegExp = core.getBooleanInput("name_is_regexp")
const skipUnpack = core.getBooleanInput("skip_unpack")
const ifNoArtifactFound = core.getInput("if_no_artifact_found")
Expand All @@ -44,7 +44,7 @@ async function main() {
const client = github.getOctokit(token)

core.info(`==> Repository: ${owner}/${repo}`)
core.info(`==> Artifact name: ${name}`)
core.info(`==> Artifact name(s): ${names}`)
core.info(`==> Local path: ${path}`)

if (!workflow) {
Expand Down Expand Up @@ -177,16 +177,19 @@ async function main() {
run_id: runID,
})

const artifactNames = names.split(",").map(artifactName => artifactName.trim())
core.info(`TESTING: ${artifactNames}`)

// One artifact if 'name' input is specified, one or more if `name` is a regular expression, all otherwise.
if (name) {
if (names) {
filtered = artifacts.filter((artifact) => {
if (nameIsRegExp) {
return artifact.name.match(name) !== null
return artifact.name.match(names) !== null
}
return artifact.name == name
return artifact.name == names
})
if (filtered.length == 0) {
core.info(`==> (not found) Artifact: ${name}`)
core.info(`==> (not found) Artifact: ${names}`)
core.info('==> Found the following artifacts instead:')
for (const artifact of artifacts) {
core.info(`\t==> (found) Artifact: ${artifact.name}`)
Expand Down

0 comments on commit 2a56197

Please sign in to comment.