mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 00:20:08 -04:00
20 lines
475 B
YAML
20 lines
475 B
YAML
name: auto-update
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
jobs:
|
|
update-guide:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.1
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
- name: Run EPG Grabber
|
|
run: ./run.sh
|
|
- name: Deploy to GitHub Pages
|
|
uses: JamesIves/github-pages-deploy-action@4.1.0
|
|
with:
|
|
branch: gh-pages
|
|
folder: .gh-pages
|