We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 123cb65 commit b4db0efCopy full SHA for b4db0ef
1 file changed
.github/workflows/ci-build.yaml
@@ -130,7 +130,9 @@ jobs:
130
console.log({ owner, repo, sha });
131
132
const releaseId = process.env.RELEASE_ID;
133
- const artifactPathNames = process.env.ARTIFACT_PATHNAMES.split(' ');
+ const artifactPathNames = process.env.ARTIFACT_PATHNAMES
134
+ .split(',')
135
+ .filter(Boolean);
136
console.log('Releasing', releaseId, artifactPathNames);
137
138
for (const artifactPathName of artifactPathNames) {
0 commit comments