iptv/.github/workflows/auto-update.yml

143 lines
5.0 KiB
YAML
Raw Normal View History

2021-02-08 12:05:46 +01:00
name: auto-update
2021-02-08 11:53:24 +01:00
on:
workflow_dispatch:
schedule:
2021-09-05 23:54:12 +02:00
- cron: '0 0,12 * * *'
2021-02-08 11:53:24 +01:00
jobs:
2021-12-12 05:08:26 +01:00
setup:
2021-08-02 03:13:25 +02:00
runs-on: ubuntu-latest
2021-09-08 23:54:29 +02:00
steps:
2021-12-12 05:08:26 +01:00
- uses: actions/checkout@v2
2022-02-06 22:04:56 +01:00
- name: Download channels from API
run: |
mkdir -p scripts/data
curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json
curl -L -o scripts/data/categories.json https://iptv-org.github.io/api/categories.json
curl -L -o scripts/data/countries.json https://iptv-org.github.io/api/countries.json
curl -L -o scripts/data/languages.json https://iptv-org.github.io/api/languages.json
curl -L -o scripts/data/regions.json https://iptv-org.github.io/api/regions.json
curl -L -o scripts/data/guides.json https://iptv-org.github.io/api/guides.json
2021-12-12 05:08:26 +01:00
- uses: actions/setup-node@v2
if: ${{ !env.ACT }}
2021-11-26 20:00:49 +01:00
with:
node-version: '14'
cache: 'npm'
2021-12-12 05:08:26 +01:00
- run: npm install
2021-12-14 04:14:31 +01:00
- run: node scripts/commands/create-database.js
2021-12-12 05:08:26 +01:00
- run: node scripts/commands/create-matrix.js
id: create-matrix
- uses: actions/upload-artifact@v2
with:
name: database
2022-02-07 07:33:09 +01:00
path: scripts/database
- uses: actions/upload-artifact@v2
with:
name: data
path: scripts/data
2021-12-12 05:08:26 +01:00
outputs:
matrix: ${{ steps.create-matrix.outputs.matrix }}
load:
2021-09-08 23:54:29 +02:00
runs-on: ubuntu-latest
2021-12-12 05:08:26 +01:00
needs: setup
2021-08-03 07:33:07 +02:00
continue-on-error: true
strategy:
fail-fast: false
2022-02-07 07:33:09 +01:00
# matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
matrix:
cluster_id: [1]
steps:
2021-12-12 05:08:26 +01:00
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
2021-12-12 05:08:26 +01:00
name: database
path: scripts
- uses: FedericoCarboni/setup-ffmpeg@v1
- uses: actions/setup-node@v2
if: ${{ !env.ACT }}
2021-11-26 20:00:49 +01:00
with:
node-version: '14'
2021-12-12 05:08:26 +01:00
- run: npm install
2022-02-07 04:18:31 +01:00
- run: node scripts/commands/load-cluster.js --cluster-id=${{ matrix.cluster_id }}
2021-12-12 05:08:26 +01:00
- uses: actions/upload-artifact@v2
with:
2021-12-12 05:08:26 +01:00
name: logs
path: scripts/logs
update:
runs-on: ubuntu-latest
2021-12-12 05:08:26 +01:00
needs: load
2021-08-03 07:33:07 +02:00
steps:
2021-12-14 04:05:36 +01:00
- uses: actions/checkout@v2
2021-12-12 05:08:26 +01:00
- run: echo "::set-output name=branch_name::$(date +'bot/auto-update-%s')"
id: create-branch-name
2021-12-14 04:05:36 +01:00
- run: git config user.name 'iptv-bot[bot]'
- run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com'
- run: git checkout -b ${{ steps.create-branch-name.outputs.branch_name }}
2021-12-12 05:08:26 +01:00
- run: curl -L -o scripts/data/codes.json https://iptv-org.github.io/epg/codes.json
- uses: actions/download-artifact@v2
with:
name: database
path: scripts
2022-02-07 07:33:09 +01:00
- uses: actions/download-artifact@v2
with:
name: data
path: scripts
2021-12-12 05:08:26 +01:00
- uses: actions/download-artifact@v2
with:
name: logs
path: scripts/logs
2021-12-14 04:14:31 +01:00
- uses: actions/setup-node@v2
if: ${{ !env.ACT }}
with:
node-version: '14'
2021-12-12 05:08:26 +01:00
- run: npm install
2022-02-05 04:59:34 +01:00
- run: node scripts/commands/save-results.js
2021-12-12 23:17:46 +01:00
- uses: actions/upload-artifact@v2
with:
name: database
2022-02-07 07:33:09 +01:00
path: scripts/database
2021-12-12 05:08:26 +01:00
- run: node scripts/commands/update-playlists.js
2021-12-14 04:05:36 +01:00
- run: git add channels/*
- run: git commit -m "[Bot] Update playlists"
2021-12-12 05:08:26 +01:00
- run: node scripts/commands/generate-playlists.js
2021-12-12 23:17:46 +01:00
- uses: actions/upload-artifact@v2
with:
name: logs
path: scripts/logs
2021-12-12 05:08:26 +01:00
- run: node scripts/commands/update-readme.js
2021-12-14 04:05:36 +01:00
- run: git add README.md
- run: git commit -m "[Bot] Update README.md"
- run: git push -u origin ${{ steps.create-branch-name.outputs.branch_name }}
- uses: tibdex/github-app-token@v1
if: ${{ !env.ACT }}
id: create-app-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
2021-12-12 05:08:26 +01:00
- uses: repo-sync/pull-request@v2
2021-12-14 04:05:36 +01:00
if: ${{ !env.ACT }}
2021-12-12 05:08:26 +01:00
id: pull-request
2021-08-03 04:34:41 +02:00
with:
2021-12-12 05:08:26 +01:00
github_token: ${{ steps.create-app-token.outputs.token }}
source_branch: ${{ steps.create-branch-name.outputs.branch_name }}
2021-08-03 07:26:55 +02:00
destination_branch: 'master'
2021-12-14 04:15:35 +01:00
pr_title: '[Bot] Daily update'
2021-08-03 07:26:55 +02:00
pr_body: |
2021-08-03 03:30:15 +02:00
This pull request is created by [auto-update][1] workflow.
2021-08-02 04:43:08 +02:00
2021-08-03 03:30:15 +02:00
[1]: https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}
2021-12-12 05:08:26 +01:00
- uses: juliangruber/merge-pull-request-action@v1
if: ${{ github.ref == 'refs/heads/master' }}
2021-08-03 07:33:07 +02:00
with:
github-token: ${{ secrets.PAT }}
2021-12-12 05:08:26 +01:00
number: ${{ steps.pull-request.outputs.pr_number }}
2021-10-01 17:37:40 +02:00
method: squash
2021-12-14 03:32:32 +01:00
- uses: JamesIves/github-pages-deploy-action@4.1.1
if: ${{ github.ref == 'refs/heads/master' }}
with:
branch: gh-pages
folder: .gh-pages
token: ${{ steps.create-app-token.outputs.token }}
git-config-name: iptv-bot[bot]
git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com
commit-message: '[Bot] Generate playlists'