From 14664c77b7ce509d415bc04246cb8fcc0a8e6627 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Tue, 15 Feb 2022 12:17:47 +0300 Subject: [PATCH] Update auto-update.yml --- .github/workflows/auto-update.yml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 406923900..2c79bf3d0 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -48,15 +48,16 @@ jobs: cluster_id: [1] steps: - uses: actions/checkout@v2 - - uses: actions/download-artifact@v2 - with: - name: database - path: scripts - 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: ls scripts/database - run: npm install - run: npm run cluster:load -- --cluster-id=${{ matrix.cluster_id }} - uses: actions/upload-artifact@v2 @@ -86,15 +87,15 @@ jobs: - uses: actions/download-artifact@v2 with: name: data - path: scripts + path: scripts/data - uses: actions/download-artifact@v2 with: name: database - path: scripts + path: scripts/database - uses: actions/download-artifact@v2 with: name: logs - path: scripts + path: scripts/logs - run: npm install - run: npm run db:update - uses: actions/upload-artifact@v2 @@ -102,8 +103,6 @@ jobs: name: database path: scripts/database - run: npm run playlist:update - - run: git add streams/* - - run: git commit -m "[Bot] Update streams" - run: npm run playlist:generate - uses: actions/upload-artifact@v2 with: @@ -131,9 +130,14 @@ jobs: commit-message: '[Bot] Deploy to iptv-org/api' clean: false - run: npm run readme:update - - 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 }} + - 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 push -u origin ${{ steps.create-branch-name.outputs.branch_name }} - uses: repo-sync/pull-request@v2 if: ${{ !env.ACT }} id: pull-request