File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -223,11 +223,11 @@ jobs:
223223 done
224224 done
225225
226- # if ls " $output_path/*.txt" ; then
227- echo "DIFF_IS_NON_EMPTY=1" >> $GITHUB_OUTPUT
228- # else
229- # echo "DIFF_IS_NON_EMPTY=0" >> $GITHUB_OUTPUT
230- # fi
226+ if ls $output_path/*.txt; then
227+ echo "DIFF_IS_NON_EMPTY=1" >> $GITHUB_OUTPUT
228+ else
229+ echo "DIFF_IS_NON_EMPTY=0" >> $GITHUB_OUTPUT
230+ fi
231231
232232 # Remove outputs if it exists
233233 rm -rf ./outputs || true
@@ -282,7 +282,8 @@ jobs:
282282 "java-objc": "Java and Objective C",
283283 "java-swift": "Java and Swift",
284284 "kotlin-objc": "Kotlin and Objective C",
285- "kotlin-swift": "Kotlin and Swift"
285+ "kotlin-swift": "Kotlin and Swift",
286+ ".txt": ""
286287 }
287288
288289 const parsedArtifacts = fs.readdirSync('./outputs').map(fileName => {
You can’t perform that action at this time.
0 commit comments