mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
9 lines
322 B
JavaScript
9 lines
322 B
JavaScript
const file = require('./file.js')
|
|
|
|
file.list([], ['us-local']).then(files => {
|
|
const country = files.map(file => file.replace(/channels\/|\.xml/gi, ''))
|
|
const days = country.map(() => 2)
|
|
const matrix = { country, days }
|
|
const output = `::set-output name=matrix::${JSON.stringify(matrix)}`
|
|
console.log(output)
|
|
})
|