iptv/.github/workflows/main.yml

27 lines
482 B
YAML
Raw Normal View History

2019-08-27 20:32:08 +02:00
name: Generate grouped playlists
on:
push:
branches:
- master
2019-08-27 20:39:38 +02:00
paths:
- 'channels/*'
2019-08-27 20:32:08 +02:00
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
2019-08-27 20:34:45 +02:00
- name: "npm install"
run: npm install
2019-08-27 20:32:08 +02:00
- name: "npm run generate"
run: npm run generate
2019-08-27 20:48:57 +02:00
- name: "git add ."
run: git add .
- name: "git commit -m 'Generated grouped playlists'"
run: git commit -m "Generated grouped playlists"