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

164 lines
5.3 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:
2023-01-20 22:58:53 +01:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
2022-02-11 19:07:16 +01:00
if: ${{ !env.ACT }}
with:
2023-01-20 22:58:53 +01:00
node-version: 16
2022-02-11 19:07:16 +01:00
cache: 'npm'
2022-03-23 18:05:00 +01:00
- run: npm run api:load
2023-01-20 22:58:53 +01:00
- uses: actions/upload-artifact@v3
2021-11-26 20:00:49 +01:00
with:
2022-02-11 19:07:16 +01:00
name: data
path: scripts/data
2021-12-12 05:08:26 +01:00
- run: npm install
2022-02-22 06:41:18 +01:00
- run: npm run db:create
2023-01-20 22:58:53 +01:00
- uses: actions/upload-artifact@v3
2021-12-12 05:08:26 +01:00
with:
name: database
2022-02-07 07:33:09 +01:00
path: scripts/database
2023-01-21 17:14:49 +01:00
- run: npm run db:matrix --silent >> $GITHUB_OUTPUT
2022-02-15 07:43:45 +01:00
id: create-matrix
2021-12-12 05:08:26 +01:00
outputs:
2023-01-20 22:58:53 +01:00
matrix: ${{ steps.create-matrix.outputs.MATRIX }}
2021-12-12 05:08:26 +01:00
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
2023-01-20 22:58:53 +01:00
matrix: ${{ fromJson(needs.setup.outputs.MATRIX) }}
2022-08-20 19:42:57 +02:00
# matrix:
# cluster_id: [1]
steps:
2023-01-20 22:58:53 +01:00
- uses: actions/checkout@v3
2023-02-03 02:49:41 +01:00
- name: Install ffmpeg
run: |
2023-02-03 04:19:29 +01:00
sudo rm -rf /var/lib/apt/lists/*
sudo apt-get clean
2023-02-03 02:49:41 +01:00
sudo apt-get update -y
sudo apt-get install -y ffmpeg
ffmpeg -version
ffprobe -version
2023-01-20 22:58:53 +01:00
- uses: actions/setup-node@v3
2021-12-12 05:08:26 +01:00
if: ${{ !env.ACT }}
2021-11-26 20:00:49 +01:00
with:
2023-01-20 22:58:53 +01:00
node-version: 16
- uses: actions/download-artifact@v3
2022-02-15 10:17:47 +01:00
with:
name: database
path: scripts/database
2021-12-12 05:08:26 +01:00
- run: npm install
2022-02-12 02:28:39 +01:00
- run: npm run cluster:load -- --cluster-id=${{ matrix.cluster_id }}
2023-01-20 22:58:53 +01:00
- uses: actions/upload-artifact@v3
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:
2023-01-20 22:58:53 +01:00
- uses: actions/checkout@v3
2022-02-21 20:30:59 +01:00
with:
fetch-depth: 0
2023-01-20 22:58:53 +01:00
- run: echo "BRANCH_NAME=$(date +'bot/auto-update-%s')" >> $GITHUB_OUTPUT
2021-12-12 05:08:26 +01:00
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'
2023-01-20 22:58:53 +01:00
- run: git checkout -b ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
2022-02-15 07:43:45 +01:00
- 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 }}
2023-01-20 22:58:53 +01:00
- uses: actions/setup-node@v3
2022-02-11 19:07:16 +01:00
if: ${{ !env.ACT }}
with:
2023-01-20 22:58:53 +01:00
node-version: 16
- uses: actions/download-artifact@v3
2021-12-12 05:08:26 +01:00
with:
2022-02-15 07:43:45 +01:00
name: data
2022-02-15 10:17:47 +01:00
path: scripts/data
2023-01-20 22:58:53 +01:00
- uses: actions/download-artifact@v3
2022-02-07 07:33:09 +01:00
with:
2022-02-15 07:43:45 +01:00
name: database
2022-02-15 10:17:47 +01:00
path: scripts/database
2023-01-20 22:58:53 +01:00
- uses: actions/download-artifact@v3
2021-12-12 05:08:26 +01:00
with:
name: logs
2022-02-15 10:17:47 +01:00
path: scripts/logs
2021-12-12 05:08:26 +01:00
- run: npm install
2022-02-12 02:28:39 +01:00
- run: npm run db:update
2022-08-24 02:23:26 +02:00
- run: npm run db:clear
2022-02-22 06:35:22 +01:00
- run: npm run db:export
2023-01-20 22:58:53 +01:00
- uses: actions/upload-artifact@v3
2022-08-10 03:39:14 +02:00
with:
name: api
path: .api
2022-08-15 01:22:55 +02:00
- run: npm run playlist:update
- run: npm run playlist:generate
2023-01-20 22:58:53 +01:00
- uses: actions/upload-artifact@v3
2021-12-12 23:17:46 +01:00
with:
name: logs
path: scripts/logs
2022-08-22 20:04:27 +02:00
- run: npm run readme:update
2022-02-22 06:13:16 +01:00
- name: Commit Changes
if: ${{ !env.ACT }}
run: |
git add streams/*
2022-02-23 06:42:16 +01:00
git commit -m "[Bot] Update /streams"
2022-02-22 06:13:16 +01:00
git add README.md
git commit -m "[Bot] Update README.md"
git status
2023-01-20 22:58:53 +01:00
git push -u origin ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
2022-02-23 07:35:25 +01:00
- name: Deploy to gh-pages
2023-01-22 14:28:45 +01:00
uses: JamesIves/github-pages-deploy-action@v4.4.1
2022-02-22 06:41:18 +01:00
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
2022-02-22 09:11:06 +01:00
commit-message: '[Bot] Deploy to GitHub Pages'
2023-01-20 15:19:38 +01:00
single-commit: true
clean: true
2022-02-23 07:35:25 +01:00
- name: Deploy to iptv-org/api
2023-01-22 14:28:45 +01:00
uses: JamesIves/github-pages-deploy-action@v4.4.1
2022-02-22 06:41:18 +01:00
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.9
2022-02-24 17:22:09 +01:00
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
id: pull-request
with:
github_token: ${{ steps.create-app-token.outputs.token }}
2023-01-20 22:58:53 +01:00
source_branch: ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
2022-02-24 17:22:09 +01:00
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