diff options
author | Alex Shnitman <alexta69@gmail.com> | 2021-08-17 23:53:49 +0300 |
---|---|---|
committer | Alex Shnitman <alexta69@gmail.com> | 2021-08-17 23:53:49 +0300 |
commit | 6e986a88ca8217e8546e8648a149e2be7aa087da (patch) | |
tree | 7808f3db734f04c013b686e10ee7b1abbbd1b0c9 /.github/workflows | |
parent | Merge pull request #38 from Rpsl/retry_button (diff) | |
download | metube-6e986a88ca8217e8546e8648a149e2be7aa087da.tar.gz metube-6e986a88ca8217e8546e8648a149e2be7aa087da.tar.bz2 metube-6e986a88ca8217e8546e8648a149e2be7aa087da.zip |
switched to the yt-dlp fork of youtube-dl (closes #41)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/update-yt-dlp.yml (renamed from .github/workflows/update-youtube-dl.yml) | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/.github/workflows/update-youtube-dl.yml b/.github/workflows/update-yt-dlp.yml index 4c23b2a..5754774 100644 --- a/.github/workflows/update-youtube-dl.yml +++ b/.github/workflows/update-yt-dlp.yml @@ -1,11 +1,11 @@ -name: update-youtube-dl +name: update-yt-dlp on: schedule: - cron: '0 0 * * *' jobs: - update-youtube-dl : + update-yt-dlp : runs-on: ubuntu-latest steps: - @@ -19,16 +19,15 @@ jobs: with: python-version: '3.8' - - name: Update youtube-dl + name: Update yt-dlp run: | pip install pipenv pipenv sync - VER=`pipenv run pip list -o | awk '$1 == "youtube-dl" {print $3}'` + VER=`pipenv run pip list -o | awk '$1 == "yt-dlp" {print $3}'` if [ -n "$VER" ]; then - pipenv update --selective-upgrade youtube-dl + pipenv update --selective-upgrade yt-dlp git config --global user.email "updater@metube" git config --global user.name "AutoUpdater" - git add Pipfile.lock - git commit -m 'upgraded youtube-dl' + git commit -m 'upgraded yt-dlp' Pipfile.lock git push fi |