mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 10:57:18 -05:00
9 lines
269 B
JavaScript
9 lines
269 B
JavaScript
|
|
const file = require('./helpers/file')
|
||
|
|
|
||
|
|
file.list().then(files => {
|
||
|
|
const country = files.map(file => file.replace(/channels\/|\.m3u/gi, ''))
|
||
|
|
const matrix = { country }
|
||
|
|
const output = `::set-output name=matrix::${JSON.stringify(matrix)}`
|
||
|
|
console.log(output)
|
||
|
|
})
|