-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 763 Bytes
/
epg.yml
File metadata and controls
34 lines (29 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: epg
on:
repository_dispatch:
types:
- epg
schedule:
# Times are in UTC
- cron: '10 1 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: checkout
uses: actions/checkout@v6
- name: get epg
run: |
curl -sLo ~/am-epg "https://github.com/forwardcomputers/bin/raw/main/am-epg"
chmod +x ~/am-epg
~/am-epg
- name: commit and push
run: |
git config --local user.email "alim@forwardcomputers.com"
git config --local user.name "Ali Mustakim"
git add .
git diff-index --quiet HEAD || git commit -a -m "github actions update"
git push origin