Skip to content

Commit b4db0ef

Browse files
authored
fix: Split ARTIFACT_PATHNAMES by comma (#52)
1 parent 123cb65 commit b4db0ef

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci-build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@ jobs:
130130
console.log({ owner, repo, sha });
131131
132132
const releaseId = process.env.RELEASE_ID;
133-
const artifactPathNames = process.env.ARTIFACT_PATHNAMES.split(' ');
133+
const artifactPathNames = process.env.ARTIFACT_PATHNAMES
134+
.split(',')
135+
.filter(Boolean);
134136
console.log('Releasing', releaseId, artifactPathNames);
135137
136138
for (const artifactPathName of artifactPathNames) {

0 commit comments

Comments
 (0)