24 lines
604 B
YAML
24 lines
604 B
YAML
name: test
|
|
on:
|
|
workflow_dispatch:
|
|
jobs:
|
|
andorradifusio_ad:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: gh-pages
|
|
- name: Run EPG Grabber
|
|
run: npx epg-grabber --config=sites/andorradifusio.ad.config.js -d
|
|
- name: Deploy to GitHub Pages
|
|
uses: JamesIves/github-pages-deploy-action@4.1.1
|
|
with:
|
|
branch: gh-pages
|
|
folder: .gh-pages
|
|
clean: false
|