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.
iptv/.github/workflows/main.yml

33 lines
631 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 config user.name"
run: git config user.name freearhey
- name: "git config user.email"
run: git config user.email free.arhey@gmail.com
- name: "git commit -m"
run: git commit -m "Generated grouped playlists"