Update auto-update.yml

This commit is contained in:
Aleksandr Statciuk 2021-07-13 19:18:04 +03:00
parent 6f912ee5bf
commit ef9fa11b1a
1 changed files with 18 additions and 1 deletions

View File

@ -18,9 +18,26 @@ jobs:
with:
name: channels
path: channels/
format:
filter:
runs-on: ubuntu-latest
needs: remove-duplicates
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Artifacts
uses: actions/download-artifact@v2
- name: Install Dependencies
run: npm install
- name: Filter Playlists
run: node scripts/filter.js
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: channels
path: channels/
format:
runs-on: ubuntu-latest
needs: filter
steps:
- name: Checkout
uses: actions/checkout@v2