mirror of https://github.com/iptv-org/iptv
Create create-matrix.js
parent
a2c6732aad
commit
61f08406a5
@ -0,0 +1,8 @@
|
||||
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)
|
||||
})
|
||||
Loading…
Reference in New Issue