iptv/.github/workflows/auto-update.yml
Aleksandr Statciuk 036db575a9 Update auto-update.yml
speedup test
2022-02-22 08:20:29 +03:00

162 lines
5.7 KiB
YAML

name: auto-update
on:
workflow_dispatch:
schedule:
- cron: '0 0,12 * * *'
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
if: ${{ !env.ACT }}
with:
node-version: '14'
cache: 'npm'
- name: Download data from API
run: |
mkdir -p scripts/data
curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json
curl -L -o scripts/data/categories.json https://iptv-org.github.io/api/categories.json
curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json
curl -L -o scripts/data/countries.json https://iptv-org.github.io/api/countries.json
curl -L -o scripts/data/guides.json https://iptv-org.github.io/api/guides.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
- uses: actions/upload-artifact@v2
with:
name: data
path: scripts/data
- run: npm install
- run: npm run db:create -- --max-clusters=30000
- uses: actions/upload-artifact@v2
with:
name: database
path: scripts/database
- run: npm run db:matrix
id: create-matrix
outputs:
matrix: ${{ steps.create-matrix.outputs.matrix }}
load:
runs-on: ubuntu-latest
needs: setup
continue-on-error: true
strategy:
fail-fast: false
# matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
matrix:
cluster_id: [1]
steps:
- uses: actions/checkout@v2
- uses: FedericoCarboni/setup-ffmpeg@v1
- uses: actions/setup-node@v2
if: ${{ !env.ACT }}
with:
node-version: '14'
- uses: actions/download-artifact@v2
with:
name: database
path: scripts/database
- run: npm install
- run: npm run cluster:load -- --cluster-id=${{ matrix.cluster_id }}
- uses: actions/upload-artifact@v2
with:
name: logs
path: scripts/logs
update:
runs-on: ubuntu-latest
needs: load
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: echo "::set-output name=branch_name::$(date +'bot/auto-update-%s')"
id: create-branch-name
- 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 }}
- 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 }}
- uses: actions/setup-node@v2
if: ${{ !env.ACT }}
with:
node-version: '14'
- uses: actions/download-artifact@v2
with:
name: data
path: scripts/data
- uses: actions/download-artifact@v2
with:
name: database
path: scripts/database
- uses: actions/download-artifact@v2
with:
name: logs
path: scripts/logs
- run: npm install
- run: npm run db:update
- uses: actions/upload-artifact@v2
with:
name: database
path: scripts/database
- run: npm run playlist:update
- run: npm run playlist:generate
- uses: actions/upload-artifact@v2
with:
name: logs
path: scripts/logs
- run: npm run readme:update
- name: Commit Changes
if: ${{ !env.ACT }}
run: |
git add streams/*
git commit -m "[Bot] Update streams"
git add README.md
git commit -m "[Bot] Update README.md"
git status
git push -u origin ${{ steps.create-branch-name.outputs.branch_name }}
# - uses: JamesIves/github-pages-deploy-action@4.1.1
# if: ${{ !env.ACT && 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'
# clean: false
# - run: npm run db:export
# - uses: JamesIves/github-pages-deploy-action@4.1.1
# if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
# with:
# repository-name: iptv-org/api
# branch: gh-pages
# folder: .api
# 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] Deploy to iptv-org/api'
# clean: false
# - uses: repo-sync/pull-request@v2
# if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
# id: pull-request
# with:
# github_token: ${{ steps.create-app-token.outputs.token }}
# source_branch: ${{ steps.create-branch-name.outputs.branch_name }}
# destination_branch: 'master'
# pr_title: '[Bot] Daily update'
# pr_body: |
# This pull request is created by [auto-update][1] workflow.
# [1]: https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}
# - uses: juliangruber/merge-pull-request-action@v1
# if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
# with:
# github-token: ${{ secrets.PAT }}
# number: ${{ steps.pull-request.outputs.pr_number }}
# method: squash