mirror of https://github.com/iptv-org/iptv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
482 B
YAML
27 lines
482 B
YAML
name: Generate grouped playlists
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'channels/*'
|
|
|
|
jobs:
|
|
generate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: "npm install"
|
|
run: npm install
|
|
|
|
- name: "npm run generate"
|
|
run: npm run generate
|
|
|
|
- name: "git add ."
|
|
run: git add .
|
|
|
|
- name: "git commit -m 'Generated grouped playlists'"
|
|
run: git commit -m "Generated grouped playlists"
|